footer col
if ( ! function_exists( 'custom_sidebars' ) ) {
// Register Sidebars
function custom_sidebars() {
$args = array(
'id' => 'footer-col-1',
'class' => 'col-md-4',
'name' => __( 'Footer colonne 1', 'text_domain' ),
'description' => __( 'adresse REN', 'text_domain' ),
'before_title' => '<h4 class="text-white text-uppercase">',
'after_title' => '</h4>',
);
register_sidebar( $args );
$args = array(
'id' => 'footer-col-2',
'class' => 'col-md-1',
'name' => __( 'footer Colonne 2', 'text_domain' ),
'description' => __( 'Réseaux sociaux', 'text_domain' ),
'before_title' => '<h4 class="text-white text-uppercase">',
'after_title' => '</h4>',
);
register_sidebar( $args );
$args = array(
'id' => 'footer-col-3',
'class' => 'col-md-2',
'name' => __( 'Footer colonne 3', 'text_domain' ),
'description' => __( 'Etiquettes, tags', 'text_domain' ),
'before_title' => '<h4 class="text-white text-uppercase">',
'after_title' => '</h4>',
);
register_sidebar( $args );
$args = array(
'id' => 'footer-col-4',
'class' => 'col-md-4',
'name' => __( 'Footer colonne 4', 'text_domain' ),
'description' => __( 'colonne de liens', 'text_domain' ),
'before_title' => '<h4 class="text-white text-uppercase">',
'after_title' => '</h4>',
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'custom_sidebars' );
}