Wordpress 将模板添加到页面属性wp

Wordpress 将模板添加到页面属性wp,wordpress,wordpress-theming,custom-wordpress-pages,Wordpress,Wordpress Theming,Custom Wordpress Pages,我正在使用此代码: add_filter( 'page_template', 'calendar_load' ); function calendar_load( $template ) { if ( is_page( 'calendar' ) ) { $template = dirname( __FILE__ ) . '/calendar-page.php'; return $template; } } 如果我的页面名为“日历”,他正在工

我正在使用此代码:

add_filter( 'page_template', 'calendar_load' ); 
function calendar_load( $template ) {
    if ( is_page( 'calendar' ) ) {
        $template = dirname( __FILE__ ) . '/calendar-page.php';
        return $template;  
    }
}
如果我的页面名为“日历”,他正在工作 但我想在wp主题的页面属性中看到我的模板。我怎么能做到?