这应该对你有好处。这将显示存储在中的模板文件post_meta
, 如果在管理面板中选择了一个:
$template_name = get_post_meta( $the_query->post->ID, \'_wp_page_template\', true );
如果要查看页面是否为主页,请使用
is_home()
或
is_front_page()
.
如果要查看生成页面的文件,请在函数中使用此选项。php:
// Returns a list of files used to generate the page. Best called in footer.php before </body>
function _dump_files()
{
# @todo Aufrufende Datei kann im Array manchmal fehlen!
add_action( \'all\', create_function( \'\', "echo \'<pre>\'; print_r( get_included_files() ); echo \'</pre>\'; return;" ) );
}
我用在
footer.php
像这样:
if (is_user_logged_in()) {
_dump_files() ;
}