acf_form_front::__construct()publicACF 5.0.0

__construct

This function will setup the class functionality

Метод класса: acf_form_front{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$acf_form_front = new acf_form_front();
$acf_form_front->__construct();

Список изменений

С версии 5.0.0 Введена.

Код acf_form_front::__construct() ACF 6.0.4

function __construct() {

	// vars
	$this->fields = array(

		'_post_title'     => array(
			'prefix'   => 'acf',
			'name'     => '_post_title',
			'key'      => '_post_title',
			'label'    => __( 'Title', 'acf' ),
			'type'     => 'text',
			'required' => true,
		),

		'_post_content'   => array(
			'prefix' => 'acf',
			'name'   => '_post_content',
			'key'    => '_post_content',
			'label'  => __( 'Content', 'acf' ),
			'type'   => 'wysiwyg',
		),

		'_validate_email' => array(
			'prefix'  => 'acf',
			'name'    => '_validate_email',
			'key'     => '_validate_email',
			'label'   => __( 'Validate Email', 'acf' ),
			'type'    => 'text',
			'value'   => '',
			'wrapper' => array( 'style' => 'display:none !important;' ),
		),

	);

	// actions
	add_action( 'acf/validate_save_post', array( $this, 'validate_save_post' ), 1 );

	// filters
	add_filter( 'acf/pre_save_post', array( $this, 'pre_save_post' ), 5, 2 );

}