我现在在wordpress中使用高级自定义字段插件。
现在我定义了一些选择,他们的选择设置如下:
字段名称:time_availability
字段类型:选择
low : Once or twice
high : Several times
所以,我想在页面代码中枚举这些设置,比如渲染:
<ul>
<li><input type="radio" name="low" /> Once or twice</li>
<li><input type="radio" name="high" /> Several times</li>
</ul>
我如何做出选择?
如果调用get_field_object($field_name)
可能会获得整个字段设置,包括选择。
但是当我使用字段名称调用该函数时,将返回以下内容:
array(18) {
["key"]=>
string(33) "field_time_availability"
["label"]=>
string(0) ""
["name"]=>
string(27) "time_availability"
["_name"]=>
string(27) "time_availability"
["type"]=>
string(4) "text"
["order_no"]=>
int(1)
["instructions"]=>
string(0) ""
["required"]=>
int(0)
["id"]=>
string(37) "acf-field-time_availability"
["class"]=>
string(4) "text"
["conditional_logic"]=>
array(3) {
["status"]=>
int(0)
["allorany"]=>
string(3) "all"
["rules"]=>
int(0)
}
["default_value"]=>
string(0) ""
["formatting"]=>
string(4) "html"
["maxlength"]=>
string(0) ""
["placeholder"]=>
string(0) ""
["prepend"]=>
string(0) ""
["append"]=>
string(0) ""
["value"]=>
bool(false)
}
不是期待的结果。
如果我用原始字段名称调用该函数:
get_field_object('field_55df081515e81');
它是对的!
问题是什么?有什么不同之处,我怎样才能使用field_name?
答案 0 :(得分:4)
最后,我找到了解决这个问题的可靠解决方案:
您可以先在源代码中看到api_acf_load_field
函数:
add_filter('acf/load_field', 'api_acf_load_field', 1, 2);
function api_acf_load_field( $field, $field_key )
{
// validate
if( !empty($GLOBALS['acf_register_field_group']) )
{
foreach( $GLOBALS['acf_register_field_group'] as $acf )
{
if( !empty($acf['fields']) )
{
foreach( $acf['fields'] as $f )
{
var_dump($f['key']);
if( $f['key'] == $field_key )
{
$field = $f;
break;
}
}
}
}
}
return $field;
}
我们可以遍历所有已注册的字段以选择正确的字段。
但$GLOBALS['acf_register_field_group']
只有在我们明确调用register_field_group
时才会出现(下面的案例2)。或者在正常情况下(下面的案例1),我们无法以这种方式得到它。
所以看看不同的情况:
function get_field_choices($field_name, $multi=false) {
$results = array();
foreach (get_posts(array('post_type' => 'acf', 'posts_per_page' => -1)) as $acf) {
$meta = get_post_meta($acf->ID);
foreach($meta as $key => $field) {
if(substr($key, 0, 6) == 'field_') {
$field = unserialize($field[0]);
if($field['name'] == $field_name && isset($field['choices'])) {
if(!$multi) return $field['choices'];
else $results []= $field;
}
}
}
}
return $results;
}
在这种情况下,字段组存储为帖子类型为acf
的帖子,字段信息存储为该字段组的post_meta
。
因此,我们抓住所有注册的字段(来自数据库),然后选择正确的字段。
register_field_group
时,如使用functions.php
中的导出php脚本:function get_field_choices($field_name, $multi=false) {
$results = array(); $results = array();
foreach($GLOBALS['acf_register_field_group'] as $acf) {
foreach($acf['fields'] as $field) {
if(substr($field['key'], 0, 6) == 'field_') {
if($field['name'] == $field_name && isset($field['choices'])) {
if(!$multi) return $field['choices'];
else $results []= $field;
}
}
}
}
return $results;
}
function get_field_choices($field_name, $multi=false) {
$results = array();
foreach($GLOBALS['acf_register_field_group'] as $acf) {
foreach($acf['fields'] as $field) {
if(substr($field['key'], 0, 6) == 'field_') {
if($field['name'] == $field_name && isset($field['choices'])) {
if(!$multi) return $field['choices'];
else $results []= $field;
}
}
}
}
foreach (get_posts(array('post_type' => 'acf', 'posts_per_page' => -1)) as $acf) {
$meta = get_post_meta($acf->ID);
foreach($meta as $key => $field) {
if(substr($key, 0, 6) == 'field_') {
$field = unserialize($field[0]);
if($field['name'] == $field_name && isset($field['choices'])) {
if(!$multi) return $field['choices'];
else $results []= $field;
}
}
}
}
return $results;
}
答案 1 :(得分:3)
在ACF网站上,他们声明:
&#34; API将返回所选值。如果您为此字段选择多个选项,则API将返回一组值。&#34;
请尝试以下方法:
// get the selected value
$value = get_field('time_availability');
?>
<ul>
<li><input type="radio" name="low" <?php echo ($value == 'low'?'checked="checked"':''); ?>/> Once or twice</li>
<li><input type="radio" name="high" <?php echo ($value == 'high'?'checked="checked"':''); ?>/> Several times</li>
</ul>
如果您已启用多个值的选择,则应使用复选框而不是无线电。
要访问可用选项,您必须获取字段对象。
// choose the field
$field_name = 'time_availability';
$field = get_field_object($field_name);
if( $field )
{
// build the form
echo '<select name="' . $field['key'] . '">';
foreach( $field['choices'] as $k => $v )
{
echo '<option value="' . $k . '">' . $v . '</option>';
}
echo '</select>';
}
要从用户获取字段对象,请使用以下表示法:
$user_id = 2; // the id of the user
$field_name = 'your_field'; // the name of the field
get_field_object($field_name, 'user_.'.$user_id)
答案 2 :(得分:1)
不确定get_field_object
为何总是返回false,并且我投票表决的答案不再起作用,所以我必须制定一个新的解决方案,我想也许ACF更新了数据存储方式,自定义字段的存储方式wp_post
表,帖子类型为acf-field
。
function get_field_choices($field_name, $multi = false) {
$results = array();
foreach (get_posts(array('post_type' => 'acf-field', 'posts_per_page' => -1)) as $acf) {
if ($acf->post_excerpt === $field_name) {
$field = unserialize($acf->post_content);
if(isset($field['choices'])) {
if(!$multi) return $field['choices'];
else $results []= $field;
}
}
}
return $results;
}