php 显示正在使用的WP模板/文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 显示正在使用的WP模板/文件相关的知识,希望对你有一定的参考价值。
add_filter( 'template_include', 'var_template_include', 1000 );
function var_template_include( $t ){
$GLOBALS['current_theme_template'] = basename($t);
return $t;
}
function get_current_template( $echo = false ) {
if( !isset( $GLOBALS['current_theme_template'] ) )
return false;
if( $echo )
echo $GLOBALS['current_theme_template'];
else
return $GLOBALS['current_theme_template'];
}
// Usage: get_current_template( true );
以上是关于php 显示正在使用的WP模板/文件的主要内容,如果未能解决你的问题,请参考以下文章
WP主题模板制作修改教程
taxonomy.php中的WP Query会杀死标准循环
php 基本WP_Query模板,用于显示每个类别的自定义帖子选择
安装wordpress最后一步显示 抱歉,无法写入wp-config.php文件您可以手动创建wp-config.php文件
wordpress主题制作:引入外部CSS样式文件和JS脚本文件
php WP Config模板#php #wp #wordpress #config