Create a Side Blog with WordPress 3.0


Sponsored Links




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

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.

Display it on Frontage.

new Side Blog

Subscribe to Full RSS Feed

RSS FeedIf you thing this article useful, please consider subscribing to our RSS Feed or e-mail updates and stay updated with us. You can also follow @WPTricksNet on twitter for latest updates.

About WP Tricks

We are WordPress Family, we collected and writed useful tips and tricks for you WordPress. We share it for you...

Related Tips and Trick from Local Data and on The Net

How to create a side blog with WordPress 3.0 | CatsWhoCode.com

How to create a side blog with WordPress 3.0. Published on June 21st, 2010 by Jean-Baptiste Jung. 63 Comments - Finally! WordPress 3.0 was released last week. Read More

WordPress › Blog Tool, Publishing Platform, and CMS

WordPress is web software you can use to create a beautiful website or blog. We like to say that WordPress is both free and priceless at the same time. Read More

WordPress.com — Get a Free Blog Here

new posts, 1,458,512 comments, & 189,462,937 words posted today on WordPress.com. Create a Blog Read More

Using WordPress Custom Template to Create Layout with Different

With WordPress 3.0+, post thumbnails have never been so easy. For those Really nice tutorial, help people to create custome blog page and costume side bar on each page. Read More

Extra! Extra! Fresh WordPress 3.0 Tutorials | Template Monster Blog

How To Create A Side Blog With WordPress 3.0. By Jean-Baptiste Jung * * * How to Enable WordPress MU into WordPress 3.0. By Harsh Agrawal * * * WordPress 3.0: Multisite Domain Read More


4 Responses to Create a Side Blog with WordPress 3.0

  1. Pingback: Tweets that mention Create a Side Blog with WordPress 3.0 # WordPress Tricks & Tips -- Topsy.com

  2. What do you mean side blog? Is it subdomain?

  3. Gary T. says:

    Can you give an example of a side blog?

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>