sticky
closed
not a support questionShow 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('');
}
?>
hide login error messages
add_filter('login_errors',create_function('$a', "return null;"));
This topic has been closed to new replies.