Gam*_*mer 5 php wordpress function wordpress-theming
在Wordpress上开发新主题时,我只是注意到add_theme_support对我不起作用.我<?php wp_head();?>在头部<?php wp_footer();?>前和身体结束前打电话.我使用的是Wordpress 4.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');
}
Run Code Online (Sandbox Code Playgroud)