Forums

[resolved] How do you change a post title with an action or filter? (2 posts)

  1. Trahald
    Member
    Posted 3 years ago #

    How does one change the title of a post or page using an action or filter?

  2. MichaelH
    Volunteer
    Posted 3 years ago #

    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');

Topic Closed

This topic has been closed to new replies.

About this Topic