Show template loaded

时间:2014-12-16 作者:CalvT

有没有办法看看是什么。正在为特定页面加载php文件?

假设我有一个页面-www.example。com/page-并在其上加载标头。php,侧栏。php,页脚。php和页面。php和插件中的任何其他php。是否有任何方法可以获得某个页面的这些列表?

2 个回复
SO网友:jdm2112

以下内容将仅向登录的管理员显示当前模板文件。如果添加到函数文件的顶部,则应在第一行看到此信息。

add_action(\'wp_head\', \'show_template\');

function show_template() {
  global $template;
  global $current_user;
  get_currentuserinfo();
  if ($current_user->user_level == 10 ) print_r($template);
}
但是,您仍然需要遵循页面模板的逻辑来确定加载了哪些页眉、侧栏和页脚。

SO网友:Guga Alves

get\\u currentuserinfo从4.5.0开始就不推荐使用!请改用wp\\u get\\u current\\u user()。

add_action(\'wp_head\', \'show_template\');

function show_template() {
  global $template;
  global $current_user;
  wp_get_current_user();
  if ($current_user->user_level == 10 ) print_r($template);
}

结束

相关推荐

A dropdown with checklist

我现在正在wordpress网站上工作,但我对分类法下拉列表有问题。此代码以公共形式显示,以便访问者发送食谱,分类法是已经在网站上注册的成分。在当前的下拉列表中,一切正常,显示分类法,并在管理中查看一次。对于这段代码,我有一个基本的下拉列表,但我想要一个带有清单的下拉列表。 <?php wp_dropdown_categories( \'tab_index=25&taxonomy=ingredient-listing&name=ingredient-listing&show_