• Resolved bkreitz

    (@bkreitz)


    Looking for suggestions on how to display the blog description before the blog title in the bookmark for the home page. Code below from the header.php currently displays blog ‘name’ before ‘description’.

    Any thoughts?

    Thanks!
    Bryan

    // Print the <title> tag based on what is being viewed.
    global $page, $paged;
    wp_title( '| Austin Travel Agency | ', true, 'right' );
    
    // Add the blog description for the home/front page.
    $site_description = get_bloginfo( 'description', 'display');
    if ( $site_description && ( is_home() || is_front_page() ) )
    	echo " - $site_description";
    
    // Add the blog name.
    bloginfo('name');
  • The topic ‘Reverse Home Page Bookmark Display Order (blogname, description’ is closed to new replies.