[sticky] [closed] WordPress Hacks (210 posts)

About This Topic

Tags

  1. milo

    key master
    Joined: Dec '07
    Posts: 743


    Posted 1 month ago
    #

    Show parent page title regardless of what subpage you are on

    <?php
    if($post->post_parent) {
    $parent_title = get_the_title($post->post_parent);
    echo $parent_title;
    } else {
    wp_title('');
    }
    ?>

  2. milo

    key master
    Joined: Dec '07
    Posts: 743


    Posted 1 month ago
    #

    hide login error messages

    add_filter('login_errors',create_function('$a', "return null;"));

Topic Closed

This topic has been closed to new replies.