WP中的精选图片未显示

时间:2015-04-25 04:41:50

标签: php wordpress

在我的function.php文件中添加了一行代码

add_theme_support('post-thumbnails');

保存后,查看我的屏幕选项,精选图片仍未显示。我甚至回去检查我的自定义字段是否正确并且我没有标记显示

3 个答案:

答案 0 :(得分:0)

hi #EliCollins使用此代码。它应该工作

add_action( 'after_setup_theme', 'theme_setup' );
function theme_setup() {
   add_theme_support('post-thumbnails' );
}

答案 1 :(得分:0)

首先:(我认为这是您说明中的拼写错误):将<?php foreach ($this->Property_Model->getProperty() as $property): ?> <div class='properties'> <div class='image-holder'><img src='images/properties/1.jpg' class='img-responsive' alt='properties'/> <?php if (strcmp($property->status, 'new') == 0) { ?> <div class='status sold'><?php $property->status ?></div> <?php } else { ?> <div class='status new'><?php $property->status ?></div> <?php } ?> </div> <h4><a href='property-detail.php'><?php $property->property_info ?></a></h4> <p class='price'><?php $property->prize ?></p> <div class='listing-detail'> <span data-toggle='tooltip' data-placement='bottom' data-original-title='Bed Room'>5</span> <span data-toggle='tooltip' data-placement='bottom' data-original-title='Living Room'>2</span> <span data-toggle='tooltip' data-placement='bottom' data-original-title='Parking'>2</span> <span data-toggle='tooltip' data-placement='bottom' data-original-title='Kitchen'>1</span> </div> <a class='btn btn-primary' href='property-detail.php'>View Details</a> </div> <?php endforeach; ?> 更改为function.php

第二:尝试在附加到functions.php挂钩的函数中调用add_theme_support('post-thumbnails'),如documentation所示。

after_setup_theme

我希望这些步骤可以解决您的问题,否则有必要提供更多代码

答案 2 :(得分:0)

我实际上昨晚发现了答案。在左侧的CPT UI中,有一个设置区域&#34;点击标题以显示可用选项。&#34;,单击设置插入符号,在底部支持下选择特色图像。然后当然进入你的function.php并添加

add_theme_support(&#39;缩略图后&#39;);

enter image description here