Skip to content

madalinungureanu/wck-cptc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

=== Custom Post Type Creator === 

Contributors: reflectionmedia, madalin.ungureanu
Donate link: http://www.cozmoslabs.com/wordpress-creation-kit/custom-post-type-creator/
Tags: post type creator, custom post type creator, custom post type, post type, custom post type builder, post type builder
Requires at least: 3.1
Tested up to: 3.3.1
Stable tag: 1.0

WCK Post Type Creator gives you the possibility to create and edit custom post types for WordPress.
 
== Description ==

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
1. Activate the plugin through the 'Plugins' menu in WordPress
1. 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. 

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

About

Wordpress Custom Post Type Creation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages