Is there any way to edit the Page Title text – that is, the text that is in the browser tab?
Thanks
Stephen
Hi Stephen,
If you want to change it, you can use the avf_title_tag hook.
Here’s an example of how you can use it:
function avia_new_title() {
$title = get_bloginfo('name');
return $title;
}
add_filter('avf_title_tag','avia_new_title');
To target specific pages, you can use Conditional Tags: https://codex.wordpress.org/Conditional_Tags
Hope it helps.
Best regards,
Nikko