Custom Post Type Creator

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.

>> DOWNLOAD WCK Custom Post Type Creator <<

Custom Post Type Creator Features:

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:

1
2
3
4
5
$args = array( 'post_type' =&gt; 'product', 'posts_per_page' =&gt; 10 );
$loop = new WP_Query( $args );
while ( $loop-&gt;have_posts() ) : $loop-&gt;the_post();
	the_title();
	echo '
‘; the_content(); echo ‘

‘; endwhile;

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