我是WordPress开发的新手,正在编辑现有主题。基本上,我创建了custom template for Pages. 我了解到模板的可编辑内容由
the_content()
功能。
问题是,我希望有更多的区域供用户添加内容。这可能吗?
以下是一个示例:
<div class="row">
<div class="col-md-12">
<div style="mystyle">
<div class="center-block " style="someotherstyle">
// i want text here
<?php the_content(); ?> // this works
</div>
</div>
// want also content here
// tried the_content() but it\'s not working twice.
</div>
</div>