wordpress中的帖子的缩略图图像

时间:2013-07-18 09:50:33

标签: wordpress thumbnails

我正在开发一个使用二十一个wordpress主题的博客。我想将帖子左侧的缩略图显示到帖子内容。我在编辑帖子部分使用了设置的特色图片但是还没有成功显示缩略图。

等待帮助。
谢谢你在adavce

2 个答案:

答案 0 :(得分:1)

打开Twenty Eleven content.php

找到这段代码:

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <header class="entry-header">

将其更改为:

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php the_post_thumbnail();?>/*Will enable post thumbnails*/
<header class="entry-header">

你完成了......

答案 1 :(得分:0)

您可以尝试以下操作:

  • 设置合适的缩略图大小: http://codex.wordpress.org/Function_Reference/add_image_size

  • 添加到content.php,例如之前或者您可以在内容之前将其添加到正文中,无论哪种方式适合您

  • 调整style.css以允许标题和帖子元数据环绕图像,你可以使用一些想法

    .home .attachment-post-thumbnail {float:left;保证金权利:4%; margin-top:15px; }     .home h1.entry-title {clear:none; }     .home .entry-meta {clear:none; }     .home .entry-content {clear:both; }

希望有所帮助!