我想知道在不插入 html 代码(布局和类)的情况下将更多内容附加到帖子的最佳方法。让我解释一下我的目的,我的开发和问题:
目的:我想创建一个流程,让 wordpress 用户能够在没有任何 Html 知识的情况下添加帖子。
我开发的内容:目前,我的帖子包含一些顶部文本(具有不同的类和 id)、一个图片库和一个页脚(具有不同的类和 id)。
这是我附加“工作”类别的帖子的代码:
添加工作类别的帖子的内容
<h1 class="work-title">Title</h1>
<div class="description">Description 1</div>
<div class="description">Description 2</div>
<div class="details">With links and social media</div>
</div>
<ul class="gallery">
<li>
<div class="image"><img class="attachment-large" title="XXXXXX" alt="XXXXX" src="http://192.168.0.11//wordpress/wp-content/themes/RORO/images/cake-factory/img1.jpg" width="900" height="auto" /></div></li>
<li>
<div class="image"><img class="attachment-large" title="XXXXXX" alt="XXXXXX" src="http://192.168.0.11//wordpress/wp-content/themes/RORO/images/cake-factory/img2.jpg" width="900" height="auto" /></div></li>
<li>
<div class="image"><img class="attachment-large" title="XXXXXX" alt="XXXXXX" src="http://192.168.0.11//wordpress/wp-content/themes/RORO/images/cake-factory/img3.jpg" width="900" height="auto" /></div></li>
</ul>
<div id="footer">
<div id="bottom_description_1"> bla bla</div>
<div id="bottom_description_2"> bla bla</div>
</div>
问题:
我是否必须将这篇文章的页眉/页脚分开,并在两个子类别中创建另外两个帖子,我将从 page.php 文件中检索它们?
如何使用此布局为标题创建默认帖子模板?(自定义字段)
<h1 class="work-title">Title</h1>
<div class="description">Description 1</div>
<div class="description">Description 2</div>
<div class="details">With links and social media</div>
</div>
如何使用此布局为页脚创建默认帖子模板?(自定义字段)
<div id="footer">
<div id="bottom_description_1"> bla bla</div>
<div id="bottom_description_2"> bla bla</div>
</div>
将这两个新帖子(页眉/页脚)链接到帖子库的最佳解决方案是什么?
有插件吗?谢谢