在Wordpress上开发新主题时,我只是注意到add_theme_support对我不起作用。我在头部结束前呼叫<?php wp_head();?>
,在身体结束前呼叫<?php wp_footer();?>
。我使用的是Wordpress 4.1.1版。任何人都可以帮我整理一下吗?我尝试了这么多次后感到很累但没有运气:(
答案 0 :(得分:4)
您在哪个挂钩上添加了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');
}