If you need to know How To Create a Side Blog with WordPress 3.0, I will show you how to do it. This tutorial is original created by CatsWhoCode, Thanks for share this wonderful tricks.
Like on my other Tricks and Tips on WordPress, we will play this featured with edit our functions.php themes files. Write down this code

Create a Side Blog - The Pussycat
function create_my_post_types() {
register_post_type('tricks',
array(
'label' => __('Tricks'),
'singular_label' => __('Tricks'),
'public' => true,
'supports' => array(
'title',
'excerpt',
'comments',
'custom-fields'
),
'rewrite' => array(
'slug' => 'tricks',
'with_front' => false
),
)
);
}
add_action( 'init', 'create_my_post_types' );
After you clear with the code above and save it, you’ll see this code appear on your left menu. More details information about this code you can read it on WordPress Codex. You can began adding data like original post or page. Read the rest of this entry »