|
Well, I had to widgetize my old theme today but it was pretty simple:
Make a file called functions.php in your theme directory. (if you don’t have one yet)
Add the following code and save the file:
if ( function_exists(’register_sidebar’) )
register_sidebar(array(
‘before_widget’ => ”,
‘after_widget’ => ”,
‘before_title’ => ‘
‘,
‘after_title’ => ‘
‘,
));
?>
Then add the following anywhere you want to add [...]
|
Reference URL
|