通过在函数中添加此函数,允许页面模板支持您的主题。php文件:
function is_page_template( $template = \'\' ) {
$page_template = get_page_template_slug( get_queried_object_id() );
if ( empty( $template ) )
return (bool) $page_template;
if ( $template == $page_template )
return true;
if ( is_array( $template ) ) {
if ( ( in_array( \'default\', $template, true ) && ! $page_template )
|| in_array( $page_template, $template, true )
) {
return true;
}
}
return ( \'default\' === $template && ! $page_template );
}