基本上,我使用的是高级自定义字段,并且有一个与ACF一起工作的ajax选项卡系统。
当前设置如下:
<ul class="css-tabs">
<li><a class="current" href="/wp-content/themes/blue-and-grey/uni-general.php">General</a></li>
<li><a href="/wp-content/themes/blue-and-grey/uni-courses.htm">Courses</a></li>
<li><a href="/wp-content/themes/blue-and-grey/uni-inthearea.htm">In the area</a></li>
<li><a href="/wp-content/themes/blue-and-grey/uni-sportsandfacilities.htm">Sports & facilities</a></li>
</ul>
目前,我正在通过AJAX加载外部php文档,唯一的问题是,php没有像在回显该字段时那样加载,因为它保存在其他地方,所以找不到。
如何使用自定义字段来显示在其他地方保存的页面模板中的内容?
我当前正在使用:
<?php echo the_field(\'current_students\'); ?>
显示字段,但如果它是外部PHP文档,则不起作用。