Plugin info

Total downloads: 8,430
Active installs: 100
Total reviews: 3
Average rating: 3
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 4
Last updated: 5/9/2013 (4618 days ago)
Added to WordPress: 2/29/2012 (13 years old)
Minimum WordPress version: 3.1
Tested up to WordPress version: 3.5.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4618 days ago • 3 reviews

22/100

Is Custom Post Type Creator abandoned?

Possibly abandoned (last update 4618 days ago).

Compatibility

Requires WordPress: 3.1
Tested up to: 3.5.2
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

IMPORTANT: The plugin Custom Post Type Creator will no longer be supported or updated.

Custom Post Type Creator is now part of WCK – Custom Fields and Custom Post Types Creator plugin, which is fully compatible. Download it and install it instead of the current plugin.

WCK Custom Post Type Creator allows you to easily create custom post types for WordPress without any programming knowledge. It provides an UI for most of the arguments of register_post_type() function.

Features:

  • Create and edit Custom Post Types from the Admin UI
  • Advanced Labeling Options
  • Attach built in or custom taxonomies to post types

Installation

  1. Upload the wck-cptc folder to the ‘/wp-content/plugins/’ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Then navigate to WCK => Post Type Creator tab and start creating your custom post types.

Frequently Asked Questions

Querying by post type in the frontend?

You can create new queries to display posts from a specific post type. This is done via the ?post_type? parameter to a WP_Query.

Example:

<?php $args = array( 'post_type' => 'product', 'posts_per_page' => 10 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
    the_title();
    echo '<div class="entry-content">';
    the_content();
    echo '</div>';
endwhile;?>

This simply loops through the latest 10 product posts and displays the title and content of them.

Review feed

No reviews available

Screenshots

  1. Post Type Creator UI: screenshot-1.jpg

    Post Type Creator UI: screenshot-1.jpg

  2. Post Type Creator UI and listing: screenshot-2.jpg

    Post Type Creator UI and listing: screenshot-2.jpg

Changelog

1.0.2

1.0.1

  • Compatible with WordPress 3.5