1
//fix вывода шорткодов acf в редактор
function acf_field_shortcode($atts) {
$atts = shortcode_atts(array(
'field' => '',
'post_id' => false,
), $atts, 'acf');
if (function_exists('get_field')) {
$field_value = get_field($atts['field'], $atts['post_id']);
if (is_array($field_value)) {
return esc_html(print_r($field_value, true));
} else {
return esc_html($field_value);
}
}
return '';
}
add_shortcode('acf', 'acf_field_shortcode');
2