【发布时间】:2017-11-01 23:50:50
【问题描述】:
我有这个代码
function display_categoria($args) {
$query = new WP_Query(array(
'post_type' => 'job_listing',
'post_status' => 'publish',
'posts_per_page' => 5
));
while ($query->have_posts()) {
echo $query->the_post();
$id=get_the_id();
echo $query1=get_permalink();
}
wp_reset_query();
}
add_shortcode( 'este', 'display_categoria' );
理论上我可以在循环中解决它
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
但是很多条目没有缩略图(特色图片),能看懂吗?
【问题讨论】:
-
所以有些确实有缩略图?对于那些没有的人,您是否检查过他们的帖子中是否确实设置了特色图片?
-
对不起,我的意思是推荐图片@TurtleTread