我开发了一些219个儿童模板。今天,我需要转换my last child-template 进入一个独立的模板中。
我从样式中删除了以下行。css文件:
Template: twentynineteen
并在我的函数中添加了几行。php文件:
if ( ! function_exists( \'oripeau_setup\' ) ) :
function oripeau_setup() {
load_theme_textdomain( \'oripeau\', get_template_directory() . \'/languages\' );
add_theme_support( \'automatic-feed-links\' );
add_theme_support( \'post-thumbnails\' );
register_nav_menus( array(
\'primary\' => __( \'Primary Menu\', \'oripeau\' ),
\'secondary\' => __(\'Secondary Menu\', \'oripeau\' )
) );
add_theme_support( \'post-formats\', array ( \'aside\', \'gallery\', \'quote\', \'image\', \'video\' ) );
}
endif;
add_action( \'after_setup_theme\', \'oripeau_setup\' );
我重命名了模板文件夹:
wp-content/themes/oripeau
但echo get\\u template\\u directory\\u uri()仍会输出
/wp-content/themes/twentynineteen
Question: 我忘了什么?