个性化阅读
专注于IT技术分析

add_theme_support在functions.php上不起作用

在Wordpress上开发新主题时, 我只是注意到add_theme_support对我不起作用。我在头结束之前叫<?php wp_head();?>, 在主体结束之前叫<?php wp_footer();?>。我正在使用Wordpress 4.1.1版。谁能帮我解决这个问题?我尝试了很多次后很累, 但是没有运气:(


#1


你在哪个挂钩上添加了add_theme_support?请尝试after_setup_theme钩子, 如下例所示:

add_action('after_setup_theme', 'my_function_after_setup_theme');
function my_function_after_setup_theme() {
    add_theme_support('automatic-feed-links');
}
赞(0)
未经允许不得转载:srcmini » add_theme_support在functions.php上不起作用

评论 抢沙发

评论前必须登录!