Wordpress模板查找器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress模板查找器相关的知识,希望对你有一定的参考价值。

This will show you what template you are currently viewing (index.php, page.php)
  1. add_action( 'wp_head', 'show_me_the_template' );
  2. function show_me_the_template() {
  3. global $template, $current_user, $wp_admin_bar;
  4.  
  5. get_currentuserinfo();
  6. /* If you have more than one user deny. Be sure to use your user ID! */
  7. if ( !is_user_logged_in() && $current_user->ID != '1' )
  8. return;
  9. if ( is_admin_bar_showing() )
  10. $wp_admin_bar->add_menu( array(
  11. 'parent' => false,
  12. 'id' => 'template',
  13. 'title' => $template,
  14. 'href' => '#'
  15. ));
  16. else
  17. print_r( $template );
  18. }

以上是关于Wordpress模板查找器的主要内容,如果未能解决你的问题,请参考以下文章

markdown 按模板查找WordPress页面的插件

在WordPress页面中查找模板使用

WordPress - 代码片段插件

为啥我的 Ray March 片段着色器反射纹理查找会减慢我的帧速率?

markdown 在WordPress中使用jQuery代码片段

Wordpress - 将代码片段包含到布局的选定部分的插件