如何在WordPress插件中动态生成图片网址?

时间:2016-02-19 18:54:45

标签: wordpress plugins shortcode

Click here see image

如何在WordPress插件中动态生成图片网址?

1 个答案:

答案 0 :(得分:0)

这是您获取精选图片网址的方式:

<?php if (has_post_thumbnail( $post->ID ) ) {
    $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'large' ); ?>
    <img src="<?php echo $image[0]; ?>" alt="<?php the_title(); ?>" />
 <?php } ?>