Custom menu registration
… for sidebar
if ( ! function_exists( 'Get_Certificates!' ) ) { // Register Sidebar function Get_Certificates!() { $args = array( ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'Get_Certificates!' ); }