我创建了几个这样的模板文件:
<?php
/*
Template Name: My Template 1
*/
get_header('my-template-1');
while ( have_posts() ) : the_post();
the_content();
endwhile;
get_footer('my-template-1');
?>
我可以为我网站的每个页面分配一个模板。
问题:
如何在管理员中编辑这些模板的特定部分?
例如,我希望有一个字段(分配给一个模板),其中包含一些特定文本,如果我编辑并保存此字段,则更新的文本应出现在使用此特定模板的所有页面中。