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
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.
Display it on Frontage.
new Side Blog




Pingback: Tweets that mention Create a Side Blog with WordPress 3.0 # WordPress Tricks & Tips -- Topsy.com
What do you mean side blog? Is it subdomain?
Side Blog is side content and usually display it on the sidebar
Can you give an example of a side blog?