markdown WP功能显示当前模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown WP功能显示当前模板相关的知识,希望对你有一定的参考价值。

1. Add the following to your theme's functions.php file:

```php
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'];
}
```

2.  Call the function in a php file using `get_current_template()` or in a twig file using `{{ function('get_current_template') }}`.

以上是关于markdown WP功能显示当前模板的主要内容,如果未能解决你的问题,请参考以下文章

一个复杂的查询,结合了WP课件功能,ACF转发器字段和寻找特定模板文件的元查询

taxonomy.php中的WP Query会杀死标准循环

WP主题模板制作修改教程

php 显示正在使用的WP模板/文件

php 显示正在使用的WP模板/文件

(WP) 页脚未显示在新的单个模板和第二个侧边栏中