Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
advanced-custom-fields
/
includes
/
fields
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if (!class_exists('acf_field_output')) { class acf_field_output extends acf_field { function initialize() { $this->name = 'output'; $this->label = 'output'; $this->public = false; $this->defaults = array('html' => false); } function render_field($field) { if (!$field['html']) { return; } if (is_string($field['html']) && !function_exists($field['html'])) { echo $field['html']; } else { call_user_func_array($field['html'], array($field)); } } } acf_register_field_type('acf_field_output'); }