在word wordpress中显示缩略图

时间:2014-03-13 04:53:23

标签: wordpress

如何使用正确的功能在帖子中显示缩略图?

如何插入'order' => 'asc'

我的实际代码:

function show_thumb() {
$thumb_id = get_post_thumbnail_id($post_id);
$thumb_url = wp_get_attachment_url( $thumb_id );
}

<?php echo show_thumb(); ?>

2 个答案:

答案 0 :(得分:0)

你可以在显示帖子的循环中使用它......

if ( has_post_thumbnail() ) {
     the_post_thumbnail();
}

答案 1 :(得分:0)

WordPress内置了此功能

在循环内你可以使用

<?php 
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
  the_post_thumbnail();
} 
?>

Codex Reference

并且在循环之外

 <?php echo get_the_post_thumbnail($page->ID, 'thumbnail'); ?>

Codex Reference