Download the PHP package powerbuoy/sleek-post-types without Composer
On this page you can find all versions of the php package powerbuoy/sleek-post-types. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download powerbuoy/sleek-post-types
More information about powerbuoy/sleek-post-types
Files in powerbuoy/sleek-post-types
Package sleek-post-types
Short Description Create post types by creating classes in /post-types/.
License GPL-2.0-or-later
Informations about the package sleek-post-types
Sleek Post Types
Create post types by creating classes in /post-types/
.
Theme Support
N/A
Hooks
sleek/post_types/field_group
Filter the ACF field group for post types before they're added.
sleek/post_types/fields
Filter the ACF fields for post types before they're added.
sleek/post_types/archive_fields
Filter the ACF fields for the archive settings before they're added.
Functions
Sleek\PostTypes\get_file_meta()
Return information about all files in /post-types/
(internal use).
Classes
Sleek\PostTypes\PostType
Extend this class to create a post type.
PostType::init()
This method is called once on every page load. It allows you to add hooks or do whatever you like related to your post type.
PostType::config()
Return an array of post type configuration here. The array is passed directly to register_post_type. A few additional properties are available:
taxonomies
This is a native WordPress property but unlike when calling register_post_type()
any taxonomy set in here will be automatically created if it doesn't already exist.
has_single
Set this to false to disable single pages for the post type.
hide_from_search
Hides the post type from search without the side effects of the built-in exclude_from_search
.
has_settings
Set this to false to not add a "Settings" page for the post type.
has_archive
If this is false the settings page will be empty, if not it will have a "Title", "Image" and "Description".
PostType::fields()
Return an array of ACF fields from here and they will be added to the post type.
PostType::sticky_modules()
Return an array of module names and they will be added to the post type. Render a sticky module using Sleek\Modules\render('name-of-module')
.
PostType::flexible_modules()
Return an array of module names and they will be available in a flexible content field named flexible_modules
. An associative array can be used to create multiple flexible content fields;
Render a flexible module field using Sleek\Modules\render_flexible('flexible_modules')
or Sleek\Modules\render_flexible('left_column')
etc.
PostType::sticky_archive_modules()
Return an array of module names and they will be added to the post type's settings page. Render a sticky module using Sleek\Modules\render('name-of-module', 'mycpt_settings')
.
PostType::flexible_archive_modules()
Return an array of module names and they will be available in a flexible content field named flexible_modules
on the post type's settings page. An associative array can be used here too.
Render modules on the settings page using Sleek\Modules\render_flexible('flexible_modules', 'mycpt_settings')
.
All versions of sleek-post-types with dependencies
powerbuoy/sleek-modules Version ^7.0.0
powerbuoy/sleek-utils Version ^1.0.0