groups

name language licence
Rounded Corners with Border-Radius PHP BSD
get post thumbnail PHP BSD
functions PHP GPL 2
header PHP GPL 2
single PHP GPL 2
buttons PHP Other
PHP Other
Untitled Snippet

< 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: GPL 2

functions

options: view full snippetsend to code collector
<?php
if ( function_exists('register_sidebar') ) // Sidebar Widget
    	    register_sidebar(array(
        'name' => 'Sidebar',
        'before_widget' => '<div class="item">',
        'after_widget' => '</div>',
        'before_title' => '<h3 class="sub">',
        'after_title' => '</h3>',
    ));  
            register_sidebar(array(
        'name' => 'topleft',
        'before_widget' => '<div class="item">',
        'after_widget' => '</div>',
        'before_title' => '<h3 class="sub">',
        'after_title' => '</h3>',
	
(Continues...)