迪诺:
有很多方法可以做到这一点。我要问您的主要问题是,谁将添加/编辑此内容?如果您要让一群人添加内容,则需要对输入进行剥离和清理(以避免注入标签或其他有害内容)。如果它只是你,那么这里是最简单/最快的解决方案:
使用自定义字段。如果您在帖子/页面编辑屏幕中看不到它们,请转到帖子编辑屏幕右上角的小标签,上面写着“屏幕选项”(或类似的东西),然后单击“自定义字段”。
看到自定义字段编辑框后,您可以添加任意数量的字段。这些存储为发布元数据。您可以<?php the_meta(); ?>
在循环中使用该函数来显示所有自定义字段。
您可以使用get_post_meta()访问特定字段。您传入 postID 和元字段的键:
<?php echo get_post_meta(get_the_ID(), 'my_key'); ?>
因此,对于您的示例,您将在后期编辑屏幕中添加:
about: Some text to go in the about section.
features: Some text to go in the features section.
然后,您将在您的页面上访问这些,如下所示:
<div id="header-style">
<?php get_header();?>
</div>
<div id="content">
<div id="about">
<?php echo get_post_meta(get_the_ID(), 'about'); ?>
</div>
<div id="features">
<?php echo get_post_meta(get_the_ID(), 'features'); ?>
</div>
</div>