目前,我正在制作新主题,并有在wordpress的管理端添加特色图片的想法,不幸的是它不起作用这是我尝试过的
我在函数中添加了此代码。php
add_theme_support( \'post-thumbnails\');
我也试着改变它
add_theme_support( \'post-thumbnails\', array( \'post\' ) ); // Add it for posts
add_theme_support( \'post-thumbnails\', array( \'page\' ) ); // Add it for pages
在我刷新并登录到我的管理面板并尝试创建新帖子或页面后,未显示特色图像,并且
在我的设置函数ja\\u theme\\u setup之后,这是我的代码
add_action(\'after-setup_theme\',\'ja_theme_setup\' );
我也试着
SCREEN OPTIONS 但我没有任何与特色图片相关的可用复选框。。请帮帮我伙计们
NOTE: 我的wp配置。php文件调试选项设置为true
define(\'WP_DEBUG\', true);
但我没有任何错误
最合适的回答,由SO网友:cybmeta 整理而成
您拼错了动作挂钩名称。
这是:
add_action( \'after-setup_theme\', \'ja_theme_setup\' );
应为:
add_action( \'after_setup_theme\', \'ja_theme_setup\' );
完整代码:
add_action( \'after_setup_theme\', \'ja_theme_setup\' );
function ja_theme_setup() {
add_theme_support( \'post-thumbnails\');
}