我确信这非常简单,我所要做的就是使用此功能将图像置于页面中心。
echo get_the_post_thumbnail( $post_id );
任何帮助将不胜感激!提前致谢
答案 0 :(得分: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;
}
答案 1 :(得分:0)
使用CSS执行此操作。如果没有更多的上下文,就无法提供一个工作示例,但它可能看起来像这样..
<div class="thePostThumbnail">
<?php echo get_the_post_thumbnail( $post_id ); ?>
</div>
.thePostThumbnail {
text-align: center;
}
答案 2 :(得分:-1)
将它放在div中并使用css。
<div align="center">
<?php echo get_the_post_thumbnail( $post_id ); ?>
</div>