我正在创建一个wordpress模板,我已经添加了缩略图A.K.A特色图像支持到我的主题,就像WordPress codex已经声明的那样。
以下是启用支持的代码:
function cleanslate_setup_theme_support() {
// Support for post thumbnails a.k.a featured images
add_theme_support( 'post-thumbnails' );
}
和
add_action( 'after_setup_theme', 'cleanslate_setup_theme_support' );
上面的代码有效我看到" Set Featured Image"但是在选择我要设置的图像时,它什么也没做。然后我将我的主题切换到默认主题,看看它是否是我的WP Core,我设置了特色图像并且它有效。我的主题可能会遇到什么问题?为什么不设置或删除特色图片/缩略图中的图像?
这就是我使用精选图片的方式:
<?php if ( has_post_thumbnail() ) { ?><header id="imageBanner" class="major-banner major main-wrap wp-bg-image" style="<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full' ); echo 'background-image: url(' . $image['0'] . '); ' . '' ?>"><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
点击&#34;删除精选图片&#34;或&#34;设置特色图像&#34;我在MS Edge admin-ajax.php 403 (Forbidden)
The server understood the request, but is refusing to fulfill it. (XHR) Post
中得到此信息
我真的坚持认为任何想法都是错误或正确的。