本文整理汇总了PHP中acf_get_field_type_label函数的典型用法代码示例。如果您正苦于以下问题:PHP acf_get_field_type_label函数的具体用法?PHP acf_get_field_type_label怎么用?PHP acf_get_field_type_label使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了acf_get_field_type_label函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: acf_field_type_exists
function acf_field_type_exists($field_type)
{
// vars
$label = acf_get_field_type_label($field_type);
// return true if label exists
if ($label !== '') {
return true;
}
// return
return false;
}
示例2: _e
" href="#"><?php
_e("Delete", 'acf');
?>
</a>
</div>
</li>
<li class="li-field-name"><?php
echo $field['name'];
?>
</li>
<li class="li-field-type">
<?php
if (acf_field_type_exists($field['type'])) {
?>
<?php
echo acf_get_field_type_label($field['type']);
?>
<?php
} else {
?>
<b><?php
_e('Error', 'acf');
?>
</b> <?php
_e('Field type does not exist', 'acf');
?>
<?php
}
?>
</li>
</ul>