HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux bsx-1-dev 6.8.0-101-generic #101-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 9 10:15:05 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/advanced-custom-fields/includes/fields/class-acf-field-output.php
<?php
/**
 * @package ACF
 * @author  WP Engine
 *
 * © 2025 Advanced Custom Fields (ACF®). All rights reserved.
 * "ACF" is a trademark of WP Engine.
 * Licensed under the GNU General Public License v2 or later.
 * https://www.gnu.org/licenses/gpl-2.0.html
 */

if ( ! class_exists( 'acf_field_output' ) ) :

	/**
	 * This class and field type has been deprecated since ACF 6.3.2 and will not output anything.
	 */
	class acf_field_output extends acf_field {


		/**
		 * This function will setup the field type data
		 *
		 * @since   5.0.0
		 */
		public function initialize() {

			// vars
			$this->name     = 'output';
			$this->label    = 'output';
			$this->public   = false;
			$this->defaults = array(
				'html' => false,
			);
		}


		/**
		 * The render field call. Deprecated since ACF 6.3.2.
		 *
		 * @param   array $field The $field being edited
		 * @return  false
		 */
		public function render_field( $field ) {

			// Deprecated since 6.3.2 and will be removed in a future release.
			_deprecated_function( __FUNCTION__, '6.3.2' );
			return false;
		}
	}


	// initialize
	acf_register_field_type( 'acf_field_output' );
endif; // class_exists check