Skip to content

A class-based plugin for making simple custom post types in Wordpress.

License

Notifications You must be signed in to change notification settings

thisanimus/wp-cpt-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Custom Post Type Plugin

A class-based plugin for making simple custom post types in Wordpress.

Installation:

  • Drag the plugin into your /wp-content/plugins folder.
  • Activate in the WP Admin dashboard.
  • Create a new custom post type by instantiating a new instance of the PostType class in wp-cpt-plugin.php.
new PostType('Store', 'Stores', 'dashicons-store');
  • Create a new custom taxonomy by instantiating a new instance of the Taxonomy class in wp-cpt-plugin.php.
new Taxonomy('Region', 'Regions', ['store']);

About

A class-based plugin for making simple custom post types in Wordpress.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published