0
I need to rewrite a line of a Wordpress plugin using functions.php, I tried using add_filter but it doesn’t work.
Basically I need to do so, this is an example of the original line:
$return = $post->post_title;
However, I need through functions.php to leave it like this:
$return = strtoupper($post->post_title);
Is there any possibility for that?