123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?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' );
- endif;
|