Hi Esmi. Thanks, but I’m not clued enough to know what to change. Nothing in the functions.php looks anything like the example.
Is this what you’re referring to?
// Action Hook
add_action( 'widgets_init', 'birdtips_widgets_init' );
add_action( 'after_setup_theme', 'birdtips_setup' );
add_action( 'wp_enqueue_scripts', 'birdtips_scripts' );
add_filter( 'get_search_form', 'birdtips_search_form' );
add_filter( 'wp_title', 'birdtips_title' );
add_theme_support( 'automatic-feed-links' );
or this?
// Document Title
function birdtips_title( $title ) {
global $page, $paged;
$title .= get_bloginfo( 'name' );
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
$title .= " | $site_description";
if ( $paged >= 2 || $page >= 2 )
$title .= ' | ' . sprintf( __( 'Page %s', 'birdtips' ), max( $paged, $page ) );
return $title;
}
Thanks!
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]