0
有沒有一種方法/過濾器/ codesnippet,使the_content文本始終輸出爲居中?無論如何,例如一個人對齊在wysiwyg編輯器留下的文字。我如何在wordpress中集成the_content?
謝謝!
有沒有一種方法/過濾器/ codesnippet,使the_content文本始終輸出爲居中?無論如何,例如一個人對齊在wysiwyg編輯器留下的文字。我如何在wordpress中集成the_content?
謝謝!
你必須用CSS來工作...
.CenterText{text-align:center!important;}
<div class="CenterText">The Content echo</div>
試試這個代碼也許有用。
<!-- Add this div as parent div. -->
<div class="contentData"></div>
<style type="text/css">
.contentData {
text-align:center;
}
</style>