php - 我怎样才能让这个得到 echo

标签 php css wordpress echo centering

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

            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;
}

关于php - 我怎样才能让这个得到 echo ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11248799/

相关文章:

php - 使用 Dreamweaver 设计 WordPress 主题

php - WordPress 从自定义模板重定向

javascript - WordPress 主题选项错误

php - 动态更改高度时,页脚不会停留在机器人上

jquery - 尝试在 $(this) 选择器中选择元素

asp.net - 为什么asp :Textbox sometimes add "text" to the CSS class in the rendered html?

html - IE11 不支持背景大小不成比例

php - 使用 PHP 生成 PDF 收据

PHP 浏览器检测和重定向

验证表中是否已存在用户名和电子邮件时出现 PHP 错误