Side-bar snippet
side bar register and hook
// Register Sidebar function custom_sidebar() { $args = array( ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'custom_sidebar' );
side bar register and hook
// Register Sidebar function custom_sidebar() { $args = array( ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'custom_sidebar' );