Wordpress - 插入 ACF php

Wordpress - Insert ACF php

我需要将 get_field ACF 插入 PHP 代码

<?php 
$not_human       = "test1";
$missing_content = "test2";
$email_invalid   = "test3";
$message_unsent  = "test4";
$message_sent    = "test5";
?>

我需要用

替换test1
<?php the_field( 'titre' ); ?>

谢谢

您应该使用 get_field 函数而不是 the_field。

// https://www.advancedcustomfields.com/resources/get_field/

示例:

<?php 
$not_human       = get_field("titre");
?>

要回显包含自定义字段滴度的 $not_human 变量的值,请执行此操作。

<?php 
$not_human       = get_field("titre");
echo $not_human;
?>

the_field 函数也应该有效,但您似乎想将自定义字段值绑定到变量,这就是建议使用 get_field 函数的原因。