settings = array( 'version' => '1.0.0', 'url' => plugin_dir_url( __FILE__ ), 'path' => plugin_dir_path( __FILE__ ), ); // include field add_action( 'acf/include_field_types', array( $this, 'include_field' ) ); // v5 } /* * include_field * * This function will include the field type class */ function include_field() { include_once( 'fields/class-acf-field-image-size-select.php' ); } } new AcfPluginImageSizeSelect(); }