admin管理员组文章数量:1026989
I tried to add thumbnail support to my theme
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service', '100', '90')
);
I tried to add thumbnail support to my theme
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service', '100', '90')
);
Share
Improve this question
edited Mar 23, 2019 at 14:45
fuxia♦
107k39 gold badges255 silver badges459 bronze badges
asked Mar 23, 2019 at 10:02
ah jonyah jony
11 silver badge2 bronze badges
1
- what are 100 and 90? Which hook is used to call this code? – Qaisar Feroz Commented Mar 23, 2019 at 10:30
1 Answer
Reset to default 1Have a look at this documentation.
This feature must be called before the
init
hook is fired. That means it needs to be placed directly intofunctions.php
or within a function attached to theafter_setup_theme
hook. For custom post types, you can also add post thumbnails using theregister_post_type()
function as well.
TRY this
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service')
);
I tried to add thumbnail support to my theme
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service', '100', '90')
);
I tried to add thumbnail support to my theme
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service', '100', '90')
);
Share
Improve this question
edited Mar 23, 2019 at 14:45
fuxia♦
107k39 gold badges255 silver badges459 bronze badges
asked Mar 23, 2019 at 10:02
ah jonyah jony
11 silver badge2 bronze badges
1
- what are 100 and 90? Which hook is used to call this code? – Qaisar Feroz Commented Mar 23, 2019 at 10:30
1 Answer
Reset to default 1Have a look at this documentation.
This feature must be called before the
init
hook is fired. That means it needs to be placed directly intofunctions.php
or within a function attached to theafter_setup_theme
hook. For custom post types, you can also add post thumbnails using theregister_post_type()
function as well.
TRY this
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service')
);
本文标签: addthemesupport postthumbnails not working
版权声明:本文标题:add_theme_support post-thumbnails not working 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745663808a2162053.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论