Search code examples
wordpresspermalinks

How to remove the arrow from the default wordpress permalink


Probably a basic question but how do I remove the arrow in the top tab on a wordpress permalink?

ie:enter image description here


Solution

  • The separator is the first argument of wp_title().

    You can use something like <title><?php wp_title(''); ?></title> to remove the separator.