ACF\AI\GEO
GEO::init
Initialize the GEO extension,
Method of the class: GEO{}
No Hooks.
Returns
void. Nothing (null).
Usage
$GEO = new GEO(); $GEO->init();
Changelog
| Since 6.8.0 | Introduced. |
GEO::init() GEO::init code ACF 6.8.8
public function init() {
// Add hooks for ACF admin interface extensions for post types.
add_filter( 'acf/post_type/additional_settings_tabs', array( $this, 'add_schema_tab' ) );
add_action( 'acf/post_type/render_settings_tab/schema', array( $this, 'render_post_type_schema_tab' ) );
// Initialize GEO submodules.
// Field Settings.
new FieldSettings();
// JSON-LD Outputs.
new Outputs\Posts();
// Note: Blocks output is initialized separately in PRO (see acf-pro.php).
}