acf_new_instance()
acf_new_instance
- Creates a new instance of the given class and stores it in the instances data store.
- @date 9/1/19
- @since ACF 5.7.10
- @param string $class The class name.
- @return object The instance.
acf_get_instance()
Returns an instance for the given class.
- @date 9/1/19
- @since ACF 5.7.10
- @param string $class The class name.
- @return object The instance.
acf_register_store()
acf_register_store
- Registers a data store.
- @date 9/1/19
- @since ACF 5.7.10
- @param string $name The store name.
- @param array $data Array of data to start the store with.
- @return ACF_Data
acf_get_store()
acf_get_store
- Returns a data store.
- @date 9/1/19
- @since ACF 5.7.10
- @param string $name The store name.
- @return ACF_Data
acf_switch_stores()
acf_switch_stores
- Triggered when switching between sites on a multisite installation.
- @date 13/2/19
- @since ACF 5.7.11
- @param integer $site_id New blog ID.
- @param int prev_blog_id Prev blog ID.
- @return void