Wordpress从图库中排除特色图片
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress从图库中排除特色图片相关的知识,希望对你有一定的参考价值。
This snippet will exclude the featured image from the attached images (gallery)
<?php $thumb_ID = get_post_thumbnail_id( $post->ID ); 'post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image', 'exclude' => $thumb_ID, ))) : ?> <ul> <?php foreach( $images as $image ) : ?> <li><?php echo wp_get_attachment_link($image->ID, 'thumbnail-latest'); ?></li> <?php endforeach; ?> </ul> <?php else: // No images ?> <!-- This post has no attached images --> <?php endif; ?>
以上是关于Wordpress从图库中排除特色图片的主要内容,如果未能解决你的问题,请参考以下文章
来自外部 url 的 wordpress 特色图片,无需下载
在静态 html 页面上显示最新的 wordpress 特色图片