Sunday, June 13, 2010

add extra side bar in your wordpress blog

Are you want to add extra side bar in your wordpress blog?

Skill Required: php html

Step 1: copy this code

<?php

if ( function_exists('register_sidebars') )

register_sidebars(2);

?>

Step 2: open wp-content\themes\your theme name\function.php file

Step 3: Paste this code here.

Step 4: copy this

<div>

<ul>

<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>

<?php endif; ?>

</ul>

</div>

Step 5: paste this code where you want this side bar.

No comments:

Post a Comment