未显示站点标题。我能做什么?

时间:2018-03-15 作者:Sujon Kumar Roy

我的WordPress站点标题未显示。它只是像www.example那样显示域。com。

请建议如何显示正确的标题标签。

1 个回复
SO网友:Дтдця

将此代码添加到函数中。php

if ( !function_exists( \'yourtheme_setup\' ) ) {
    function yourtheme_setup() {
        /*
         * Let WordPress manage the document title.
         * By adding theme support, we declare that this theme does not use a
         * hard-coded <title> tag in the document head, and expect WordPress to
         * provide it for us.
         */
        add_theme_support( \'title-tag\' );
    }

    add_action( \'after_setup_theme\', \'yourtheme_setup\' );
}
或者,如果您的功能。php已经有after_setup_theme, 只需添加行add_theme_support( \'title-tag\' ); 进入您的after_setup_theme. (Source)

结束