Add a side bar to template
-
Can anyone tell me how to add a second dynamic sidebar to my template I am using the Starkers them here: https://elliotjaystocks.com/starkers/
And this is the code in my functions.php file
<?php /** * @package WordPress * @subpackage Starkers */ automatic_feed_links(); if ( function_exists('register_sidebar') ) { register_sidebar(array( 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '</li>', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>', )); } ?>
I’ve tried following some tutorials but I know almost NO PHP and my functions file has an array that the tutorials do not mention.
Many Thanks!
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Add a side bar to template’ is closed to new replies.