add_theme_support不支持functions.php

Gam*_*mer 5 php wordpress function wordpress-theming

在Wordpress上开发新主题时,我只是注意到add_theme_support对我不起作用.我<?php wp_head();?>在头部<?php wp_footer();?>前和身体结束前打电话.我使用的是Wordpress 4.1.1版.任何人都可以帮我整理一下吗?尝试了这么多次后我很累但没有运气:(

Sta*_*nov 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');
}
Run Code Online (Sandbox Code Playgroud)

  • 我懂了。它应该在functions.php中调用,或者应该挂接到after_setup_theme。(检查代码 https://codex.wordpress.org/Function_Reference/add_theme_support)您能否将您的调用添加到上面的函数中? (3认同)