Luxury
Phone number on Primary Menu
if ( ! function_exists( 'phone_info_on_header' ) ) {
// Register Sidebars
function phone_info_on_header() {
$args = array(
'id' => 'phone_info_on_header',
'class' => 'phone_info_on_header',
'name' => __( 'Phone Info on Top Header', 'Divi' ),
'description' => __( 'This sidebar holds phone number CTA button and other info on the right of Primary Menubar', 'Divi' ),
);
register_sidebar( $args );
}
add_action( 'widgets_init', 'phone_info_on_header' );
}