我正在使用此代码:
add_filter( 'page_template', 'calendar_load' );
function calendar_load( $template ) {
if ( is_page( 'calendar' ) ) {
$template = dirname( __FILE__ ) . '/calendar-page.php';
return $template;
}
}
如果我的页面名称为“日历”,他正在工作 但我希望在wp主题的页面属性中看到我的模板。我怎么能这样做? enter image description here