从Wordpress上的Post获取附加图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从Wordpress上的Post获取附加图像相关的知识,希望对你有一定的参考价值。

  1. <?php function postimage($size=thumbnail, $qty=-1) {
  2. if ( $images = get_children(array(
  3. 'post_parent' => get_the_ID(),
  4. 'post_type' => 'attachment',
  5. 'numberposts' => $qty,
  6. 'post_mime_type' => 'image',)))
  7. {
  8. foreach( $images as $image ) {
  9. $attachmenturl=wp_get_attachment_url($image->ID);
  10. $attachmentimage=wp_get_attachment_image( $image->ID, $size );
  11.  
  12. echo '<li><a href="'.$attachmenturl.'" rel="shadowbox[photos]">'.$attachmentimage.'</a></li>' . " ";
  13. }
  14. } else {
  15. echo "No Image";
  16. }
  17. } ?>

以上是关于从Wordpress上的Post获取附加图像的主要内容,如果未能解决你的问题,请参考以下文章

从外部RSS提要获取Wordpress特色图像

从 Wordpress 媒体库中获取单个特定图像

PHP 从Wordpress上发布附加图像

PHP wordpress - 从附加到帖子的图像自动创建Greybox图像集

将图像附加到 Wordpress XMLRPC 中的帖子

如何强制WordPress Gutenberg刷新特色图片?