Download the PHP package soberwp/models without Composer
On this page you can find all versions of the php package soberwp/models. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download soberwp/models
More information about soberwp/models
Files in soberwp/models
Package models
Short Description WordPress plugin to create custom post types and taxonomies using JSON, YAML or PHP files.
License MIT
Homepage https://github.com/soberwp
Informations about the package models
Models
Models is a WordPress plugin allowing you to create custom post types and taxonomies using JSON, YAML or PHP files.
You can now set post types and taxonomies using Intervention 2.x.x.
Installation
Composer:
Recommended methods:
Models is a mu-plugin so it doesn't have to be activated.
Manual:
- Download the zip file
- Unzip to your sites plugin folder
- Activate via WordPress
Requirements:
- PHP >= 5.6.x
Setup
By default, create folder models/
within the active theme directory.
If you are a Roots Sage the default folder is app/models/
Alternatively, you can define a custom path using the filter below within your themes functions.php
file:
That's it, now go ahead and add model-name.json
files, in the folder or subfolders to begin creating your models. Use Unravel to automatically move the config files outside of your theme path for better separation of concerns.
Usage
The data structure follows a similar data structure to WordPress taxonomies and post types arrays, so if an config option is missing from the examples below, follow the developer's reference and place it within "config": {}
If values are not specified, defaults are the same as WordPress defaults.
Additionally, if the Extended CPTs library is available, Models will use it when registering your post types and taxonomies instead allowing extended functionality within your Models.
Extracted examples presented below are in JSON format.
Post Types
Create a custom post type.
Required:
- post-type-required.json
- post-type-required.php
- post-type-required.yaml
Basic:
- post-type-basic.json
- post-type-basic.php
- post-type-basic.yaml
In the above example, "labels": {}
are redundant because "Book"
and "Books"
would have been generated from "name"
.
Multiple:
- post-type-multiple.json
- post-type-multiple.php
- post-type-multiple.yaml
All Fields:
- post-type-all.json
- post-type-all.php
- post-type-all.yaml
Post Type Tips:
"active": false
stops the post type from being created. Default is set totrue
."type": "post-type"
also accepts a shorthand"type": "cpt"
;
Taxonomies
Create a custom taxonomy.
Required:
- taxonomy-required.json
- taxonomy-required.php
- taxonomy-required.yaml
Basic:
- taxonomy-basic.json
- taxonomy-basic.php
- taxonomy-basic.yaml
"links": (string|array)
assigns the taxonomy to post types. Defaults to "links": "post"
Multiple:
- taxonomy-multiple.json
- taxonomy-multiple.php
- taxonomy-multiple.yaml
"type": "category"
and "type": "tag"
shorthands are explained below under Tips.
All Fields:
- taxonomy-all.json
- taxonomy-all.php
- taxonomy-all.yaml
Taxonomy Tips:
"active": false
stops the taxonomy from being created. Default is set totrue
."type": "taxonomy"
also accepts shorthands;"type": "tax"
"type": "category"
or"type": "cat"
creates a category taxonomy."type": "tag"
creates a tag taxonomy.
Support
- Follow @withjacoby on Twitter
- Buy me a beer or pay my rent, paypal.me/darrenjacoby
Updates
Composer:
- Change the composer.json version to ^1.0.4**
- Check CHANGELOG.md for any breaking changes before updating.
WordPress:
Includes support for github-updater to keep track on updates through the WordPress backend.
- Download github-updater
- Clone github-updater to your sites plugins/ folder
- Activate via WordPress
All versions of models with dependencies
composer/installers Version ^1.5
hassankhan/config Version ^1.0
symfony/yaml Version ^4.1