我确定这非常简单,我要做的就是使用它在页面上居中图像。
echo get_the_post_thumbnail( $post_id );
任何帮助将非常感激!提前致谢
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;
}
使用 CSS 来做到这一点。无法提供没有更多上下文的工作示例,但它可能看起来像这样..
<div class="thePostThumbnail">
<?php echo get_the_post_thumbnail( $post_id ); ?>
</div>
.thePostThumbnail {
text-align: center;
}
将其放入 div 并使用 css。
<div align="center">
<?php echo get_the_post_thumbnail( $post_id ); ?>
</div>