ACF\AI\GEO

GEO::add_schema_tabpublicACF 6.8.0

Adds the "Schema" settings tab for post types.

Method of the class: GEO{}

No Hooks.

Returns

array.

Usage

$GEO = new GEO();
$GEO->add_schema_tab( $tabs );
$tabs(array) (required)
An array of the existing tabs.

Changelog

Since 6.8.0 Introduced.

GEO::add_schema_tab() code ACF 6.8.8

public function add_schema_tab( $tabs ) {
	$tabs['schema'] = __( 'Schema', 'acf' );
	return $tabs;
}