How does one change the title of a post or page using an action or filter?
How does one change the title of a post or page using an action or filter?
One example here at the bottom:
http://comox.textdrive.com/pipermail/wp-hackers/2008-January`/017099.html
function foo_the_title( $title ) {
if ( 'About' == $title ) {
return 'New Title';
}
return $title;
}
add_filter('the_title', 'foo_the_title');This topic has been closed to new replies.