You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This folder stores the import-able ACF JSON for extra fields (instead of defining them in the codebase).
You will have to disable $this->init_acf(); in inc/plugin-logic/class-post-type-builder constructor function.
The Classes escape all user-submitted input and provide a consisten, WordPress-like API (with familiar function naming conventions like get_the_photo and the_photo to return or echo, respectively).
Some of these functions are wrappers for existing WP functions: this is by design
Dev Note: (since v1.0)
The ACF_Image class is loaded, but is as-of-yet unused. May be used in future versions (if/where "Featured Image" is not used). If your project also uses this class, you should wrap the class initialization in a conditional:
if ( ! class_exists( 'ACF_Image' ) ) {
// require_once the path to the `ACF_Image` class
}
This will prevent the class from being loaded twice (and throwing an error).