返回每个帖子的特色图片? (WordPress)

我正在寻找一些帮助, 以返回我网站上每个帖子的精选图片URL。我当前使用的代码仅返回页面上第一篇文章的值。

这是我正在使用的东西:

<?php if (has_post_thumbnail( $post->ID) ): ?>
<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID), 'single post thumbnail'); ?>
<div class="comments-bg-image" style="background-image: url('<?php echo $image[0]; ?>'" </div>
<?php endif; ?>

任何帮助将不胜感激, 谢谢!


#1


WordPress的wp_get_attachment_image_src仅使用$ size参数的特定字符串关键字, 这些关键字是:

  • 缩图
  • 介质
  • 充分

见下文:

<?php if (has_post_thumbnail($post->ID)) : ?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'large'); ?>
<div class="comments-bg-image" style="background-image: url('<?php echo $image[0]; ?>'"></div>
<?php endif; ?>

乍一看, 我注意到你的div.comments-bg-image元素中的结尾>丢失了, 尽管我怀疑这是导致你遇到问题的原因。 😉

资源:

  • 函数参考/ wp_get_attachment_image_src

来源:

https://www.srcmini02.com/63861.html

微信公众号
手机浏览(小程序)

Warning: get_headers(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(): Failed to enable crypto in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57

Warning: get_headers(https://static.shanhubei.com/qrcode/qrcode_viewid_37560.jpg): failed to open stream: operation failed in /mydata/web/wwwshanhubei/web/wp-content/themes/shanhuke/single.php on line 57
0
分享到:
没有账号? 忘记密码?