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