groups

name language licence
Archive PHP Other
header PHP Other
footer PHP Other
home PHP Other
Template : links PHP Other
index PHP Other
nav PHP Other
functions PHP Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >



language: PHP
licence: Other

functions

options: view full snippetsend to code collector
<?php

/*-----------------------------------------------------------------------------
	Widget Support
-----------------------------------------------------------------------------*/
if ( function_exists('register_sidebar') )
	register_sidebar(array(
		'name' => 'Sidebar',
		'before_widget' => '<div class="sidebar-cat">', 
		'after_widget' => '</div>', 
		'before_title' => '<h2>',
		'after_title' => '</h2>',
	));


	
(Continues...)