现在花一点时间,但几乎没有用。
我正在尝试更改循环,以便它检查每篇文章中的特色图像,如果找到一个,则显示该文章而不是截断的文章和链接。
所以基本上(逻辑上)
Check for featured image
if there is a featured image display the featured image (and nothing else).
else display a truncated version of the article.
有人可以帮忙吗?
答案 0 :(得分:1)
你走了;
<?php if (function_exists('has_post_thumbnail') && has_post_thumbnail()) { ?>
<?php $img_src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), array( 960,960 )); ?>
<img src="<?php echo $img_src[0]; ?>" alt="My image" />
<?php } else { ?>
<?php the_excerpt(); ?>
<?php } ?>
在代码中查看以下内容以获取更多信息;