如果你有Pro version 对于插件,您最好使用ACF选项页面。
更多信息:https://www.advancedcustomfields.com/resources/options-page/
您需要在主题中启用它,方法是在函数中添加类似的内容。php文件。
if( function_exists(\'acf_add_options_page\') ) {
acf_add_options_page(array(
\'page_title\' => \'Theme General Settings\',
\'menu_title\' => \'Theme Settings\',
\'menu_slug\' => \'theme-general-settings\',
\'capability\' => \'edit_posts\',
\'redirect\' => false
));
}
然后您可以将其弹出到页脚中;
<?php the_field( \'field_name\', \'option\' ); ?>
然而,您应该对这将是另一个数据库查询的事实感到厌倦,所以若您担心速度,那个么最好将内容硬编码到页脚中。php
此时此刻,选项页are only in the Pro version 我相信这个插件。