Widgets area
Custom widgets area
if ( ! function_exists( 'Custom_area_widgats' ) ) {
// Register Sidebars
function Custom_area_widgats() {
$args = array(
'id' => 'navegamar_custom_widgets_area',
'class' => 'navegamar_custom_widgets_area',
'name' => __( 'Navegamar custom widgets area', 'custom_area_widgets' ),
'description' => __( 'Crea una nueva widgets area. Podemos poner lo que queramos.', 'custom_area_widgets' ),
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'Custom_area_widgats' );
}