add_theme_support不支持functions.php

时间:2016-05-12 18:28:59

标签: php wordpress function wordpress-theming

在Wordpress上开发新主题时,我只是注意到add_theme_support对我不起作用。我在头部结束前呼叫<?php wp_head();?>,在身体结束前呼叫<?php wp_footer();?>。我使用的是Wordpress 4.1.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');
}