我如何将word_content置于wordpress中心?

时间:2015-09-22 05:38:33

标签: wordpress text center

是否有方法/ filter / codesnippet使the_content文本始终以居中方式输出?无论一个人如何对齐wysiwyg编辑器中留下的文本。

谢谢!

2 个答案:

答案 0 :(得分:1)

尝试此代码可能很有用。

<!-- Add this div as parent div. -->
<div class="contentData"></div>
<style type="text/css">
.contentData {
     text-align:center;
}
</style>

答案 1 :(得分:0)

你必须使用css ...

.CenterText{text-align:center!important;}
<div class="CenterText">The Content echo</div>