使用PHP类的WordPress函数文件

时间:2016-08-10 04:50:04

标签: php wordpress function class

我目前正根据此博客文章创建一个WordPress functions.php文件 - http://jonathannicol.com/blog/2014/06/22/organize-wordpress-functions-file/

到目前为止一切正常,但在尝试添加主题徽标功能时遇到困难(https://codex.wordpress.org/Theme_Logo

function theme_prefix_the_custom_logo() {
    if ( function_exists( 'the_custom_logo' ) ) {
        the_custom_logo();
    }
}

进入functions.php文件中的PHP类。

我似乎无法打电话

<?php theme_prefix_the_custom_logo(); ?>

<?php $myTheme->theme_prefix_the_custom_logo(); ?>

来自我的front-page.php模板文件,就像我通常那样。有什么想法,我应该把这个功能放在课堂上,以及如何使我的主题中的模板文件可用?

0 个答案:

没有答案