ACF_Admin_Taxonomies::get_registration_error_statepublicACF 6.1

Returns the registration error state.

Method of the class: ACF_Admin_Taxonomies{}

No Hooks.

Returns

String.

Usage

$ACF_Admin_Taxonomies = new ACF_Admin_Taxonomies();
$ACF_Admin_Taxonomies->get_registration_error_state();

Changelog

Since 6.1 Introduced.

ACF_Admin_Taxonomies::get_registration_error_state() code ACF 6.8.8

public function get_registration_error_state() {
	return '<span class="acf-js-tooltip dashicons dashicons-warning" title="' .
	__( 'This taxonomy could not be registered because its key is in use by another taxonomy registered by another plugin or theme.', 'acf' ) .
	'"></span> ' . _x( 'Registration Failed', 'post status', 'acf' );
}