WordPress wp_title blank on index page

后端 未结 12 1019
刺人心
刺人心 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:10

    Update for WordPress versions (>= 4.4)

    Try this

    function some_name(){
        add_theme_support( 'title-tag' );
    }
    
    add_action( 'after_setup_theme', 'some_name' );
    

    Do this in functions.php and remove 'title' tag from head...

提交回复
热议问题