Advertisement
lorro

WordPress - Modify page title

Oct 29th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.   // Modify page title
  3.   // code goes in functions.php for your child theme
  4.   add_filter('the_title', 'modify_title', 10);
  5.   function modify_title( $title ) {
  6.     return str_replace("&nbsp;", "", $title);
  7.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement