Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1276955

    Is there any way to edit the Page Title text – that is, the text that is in the browser tab?

    Thanks

    Stephen

    #1276969

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.