Skip to content

Instantly share code, notes, and snippets.

@luxiaojian
Created April 21, 2015 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luxiaojian/cf3f4a76a2b2d3376f6c to your computer and use it in GitHub Desktop.
Save luxiaojian/cf3f4a76a2b2d3376f6c to your computer and use it in GitHub Desktop.
wordpress前端调用文章缩略图
<?php
$thumb_id = get_post_thumbnail_id();
$thumb_url = wp_get_attachment_image_src($thumb_id,'thumbnail-size', true);//thumbnail-size:thumbnail,medium,large,full
echo $thumb_url[0];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment