好的,有帮助,它起作用了。因此,主题在wordpress面前是可以的,但无法加载到管理中,因此我们通过以下方式更改了之前的条件:
if (!function_exists(\'get_field\') && !is_admin()) {
function get_field()
{
return;
}
function the_field()
{
return;
}
}
但在管理员中激活时也存在同样的问题,因为我在函数中使用了acf。php也是。
if (!empty(get_post(get_field(\'login\', \'options\')))) {
更改时间:
if( get_option(\'login\') ) {