2017 © Pedro Peláez
 

library custompostype

Create custom post type for wordpres

image

garung/custompostype

Create custom post type for wordpres

  • Thursday, July 20, 2017
  • by Garung
  • Repository
  • 0 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

WP CUSTOM POST TYPE

Custom post type, (*1)

Description: Create simple Custom Post Type for wordpress, (*2)

Parameters:, (*3)


DEMO , (*4)

/**
 * Class handle for Product Custom Post Type
 */
class ProductCustomPost
{
    public function __construct()
    {
        $fields = [
            'posttype'          => 'product',
            'posttype_label'    => 'Sản Phẩm',
            'posttype_singular' => 'Sản Phẩm',
            'posttype_slug'     => 'product',
            'taxonomy_type'      => 'category-product',
            'taxonomy_label'     => 'Categories',
            'taxonomy_singular'  => 'Product Category',
            'taxonomy_slug'      => 'category-product',
        ];
        new CustomPost($fields);
    }
}

Note important: After create custom post type successful, you need update permalink by: Setting => permalink

The Versions

20/07 2017

dev-master

9999999-dev

Create custom post type for wordpres

  Sources   Download

MIT

The Requires

  • php >5.4

 

by Avatar Garung

11/05 2017

1.1

1.1.0.0

Create custom post type for wordpres

  Sources   Download

MIT

The Requires

  • php >5.4

 

by Avatar Garung