Created
July 9, 2012 12:51
-
-
Save jameshibbard/3076320 to your computer and use it in GitHub Desktop.
Sample functions.php file for WordPress site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( function_exists('register_sidebar') ) { | |
register_sidebar(array('name' => 'Sidebar', | |
'description' => 'Sidebar for navigation', | |
'before_widget' => '<div class="widget">', | |
'after_widget' => '</div>', | |
'before_title' => '', | |
'after_title' => '')); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment