0

我确定这非常简单,我要做的就是使用它在页面上居中图像。

            echo get_the_post_thumbnail( $post_id );

任何帮助将非常感激!提前致谢

4

3 回答 3

1
echo get_the_post_thumbnail( $post_id, 'post-thumbnail', array( 'class' => 'center-img' ) );

在你的 style.css 中创建一个类 center-img:

.center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
于 2012-06-28T16:23:28.267 回答
0

使用 CSS 来做到这一点。无法提供没有更多上下文的工作示例,但它可能看起来像这样..

HTML

<div class="thePostThumbnail">
  <?php echo get_the_post_thumbnail( $post_id ); ?>
</div>

CSS

.thePostThumbnail {
  text-align: center;
}
于 2012-06-28T16:22:08.027 回答
-1

将其放入 div 并使用 css。

<div align="center">
  <?php echo get_the_post_thumbnail( $post_id ); ?>
</div>
于 2012-06-28T16:20:24.257 回答