WordPress wp_title blank on index page

后端 未结 12 898
刺人心
刺人心 2020-12-24 05:44

I\'m new to WordPress and just installed version 3.3.1.

I did some googling regarding this question and found some answers but they were relevant to version 2.7 and

12条回答
  •  醉梦人生
    2020-12-24 06:14

    The new hack from Codex is as follows:

    <?php wp_title(''); ?>
    

    Then in your "functions.php" from theme file :

    add_filter( 'wp_title', 'baw_hack_wp_title_for_home' );
    function baw_hack_wp_title_for_home( $title )
    {
      if( empty( $title ) && ( is_home() || is_front_page() ) ) {
        return __( 'Home', 'theme_domain' ) . ' | ' . get_bloginfo( 'description' );
      }
      return $title;
    }
    

提交回复
热议问题