admin管理员组文章数量:1435859
This is a weird one - this exact code works with after_setup_theme
but not with after_switch_theme
. Of course I would rather use after_switch_theme
because after_setup_theme
runs all the time - but it just will not work.
add_action( 'after_setup_theme', 'wpdocs_theme_setup' );
function wpdocs_theme_setup() {
add_theme_support( 'post-thumbnails' );
add_image_size( 'hero_image', 1920, 800, true);
add_image_size( 'hero_image_md_lg', 991, 490, true);
add_image_size( 'hero_image_md', 767, 460, true);
add_image_size( 'hero_image_sm', 549, 575, true);
...
}
For reference: yes, I am switching the theme. Yes, I am regenerating the thumbnails. And in my wpdocs_theme_setup
function I'm also adding custom roles that work regardless of which hook is being used. Any thoughts?
This is a weird one - this exact code works with after_setup_theme
but not with after_switch_theme
. Of course I would rather use after_switch_theme
because after_setup_theme
runs all the time - but it just will not work.
add_action( 'after_setup_theme', 'wpdocs_theme_setup' );
function wpdocs_theme_setup() {
add_theme_support( 'post-thumbnails' );
add_image_size( 'hero_image', 1920, 800, true);
add_image_size( 'hero_image_md_lg', 991, 490, true);
add_image_size( 'hero_image_md', 767, 460, true);
add_image_size( 'hero_image_sm', 549, 575, true);
...
}
For reference: yes, I am switching the theme. Yes, I am regenerating the thumbnails. And in my wpdocs_theme_setup
function I'm also adding custom roles that work regardless of which hook is being used. Any thoughts?
1 Answer
Reset to default 0The reason adding custom roles works on after_switch_theme
is because roles are saved in the database. In fact, because it saves to the database, it should not run on after_setup_theme
.
add_image_size()
, on the other hand, does not save anything to the database, so needs to run on every page load, and needs to be hooked on a hook that runs for every page load. So after_setup_theme
is the correct hook to use.
本文标签: hooksaddimagesize not working with afterswitchtheme
版权声明:本文标题:hooks - add_image_size not working with after_switch_theme 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745674182a2669749.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论