wordpress添加缩略图以发布摘录插件或方法

时间:2011-06-14 09:10:05

标签: php wordpress-plugin wordpress

我正在寻找一种方法来添加缩略图以发布摘录。

我已经安装了:SuperSlider-Excerpt和Thumbnail For Excerpts插件,但我需要专门指定我想要用于每个帖子的缩略图,或者自动将特色图像显示为缩略图。

任何人都知道可以做到这一点的方法或插件吗?

2 个答案:

答案 0 :(得分:2)

您可以使用Wordpress轻松完成此操作。就像Francy所说,the_post_thumbnail()会在管理部分的帖子编辑页面上添加您选择的精选图片。

首先,您需要在functions.php文件中设置缩略图。这是您主题的根目录(wp-content / themes / your-theme)。写下这个:

add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 200, 200, false ); // Set your size, and clipping options

这会使缩略图200x200。你可能想要别的东西,所以把你想要的任何数字放在那里。

现在缩略图处于活动状态,您可以在循环内的整个站点中使用the_post_thumbnail()来显示您选择的缩略图。

例如,如果您希望它们出现在索引页面上,请转到主题根目录中的index.php,然后再写入。试验它们出现的位置,并将它放在适合您的地方。

答案 1 :(得分:1)

在循环中尝试:

the_post_thumbnail("thumbnail");

或者对我有帮助的是:

<?php
    $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'thumbnail'); 
    $theImageSource = $image[0];
?>