Return to Snippet

Revision: 58273
at July 5, 2012 04:50 by pruntrut


Initial Code
	<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar') ) : ?><?php endif; ?>


<?php  
    if (function_exists('register_sidebar') )  
        register_sidebar(array(  
            'before_widget' => '<div class="widget">',  
            'after_widget' => '</div>',  
            'before_title' => '<h2>',  
            'after_title' => '</h2>',  
        ))  
    ;  
    ?>  

Initial URL


Initial Description


Initial Title
Dynamic Sidebar

Initial Tags


Initial Language
Other