/home/desid573/verdenaturopathy.com.au/wp-content/themes/blossom-coach/inc
Edit: /home/desid573/verdenaturopathy.com.au/wp-content/themes/blossom-coach/inc/widgets.php (3933B)
array(
'name' => __( 'Sidebar', 'blossom-coach' ),
'id' => 'sidebar',
'description' => __( 'Default Sidebar', 'blossom-coach' ),
),
'client' => array(
'name' => __( 'Client Section', 'blossom-coach' ),
'id' => 'client',
'description' => __( 'Add "Blossom: Client Logo" widget for client section.', 'blossom-coach' ),
),
'about' => array(
'name' => __( 'About Section', 'blossom-coach' ),
'id' => 'about',
'description' => __( 'Add "Blossom: Featured Page" widget for about section.', 'blossom-coach' ),
),
'cta' => array(
'name' => __( 'Call To Action Section', 'blossom-coach' ),
'id' => 'cta',
'description' => __( 'Add "Blossom: Call To Action" widget for call to action section.', 'blossom-coach' ),
),
'testimonial' => array(
'name' => __( 'Testimonial Section', 'blossom-coach' ),
'id' => 'testimonial',
'description' => __( 'Add "Blossom: Testimonial" widget for testimonial section.', 'blossom-coach' ),
),
'service' => array(
'name' => __( 'Service Section', 'blossom-coach' ),
'id' => 'service',
'description' => __( 'Add "Blossom: Icon Text" widget for service section.', 'blossom-coach' ),
),
'simple-cta' => array(
'name' => __( 'Simple Call To Action Section', 'blossom-coach' ),
'id' => 'simple-cta',
'description' => __( 'Add "Blossom: Call To Action" widget for simple call to action section.', 'blossom-coach' ),
),
'contact' => array(
'name' => __( 'Contact Section', 'blossom-coach' ),
'id' => 'contact',
'description' => __( 'Add "Blossom: Contact" widget & "Text" widget for Contact section.', 'blossom-coach' ),
),
'footer-one'=> array(
'name' => __( 'Footer One', 'blossom-coach' ),
'id' => 'footer-one',
'description' => __( 'Add footer one widgets here.', 'blossom-coach' ),
),
'footer-two'=> array(
'name' => __( 'Footer Two', 'blossom-coach' ),
'id' => 'footer-two',
'description' => __( 'Add footer two widgets here.', 'blossom-coach' ),
),
'footer-three'=> array(
'name' => __( 'Footer Three', 'blossom-coach' ),
'id' => 'footer-three',
'description' => __( 'Add footer three widgets here.', 'blossom-coach' ),
),
'footer-four'=> array(
'name' => __( 'Footer Four', 'blossom-coach' ),
'id' => 'footer-four',
'description' => __( 'Add footer four widgets here.', 'blossom-coach' ),
)
);
foreach( $sidebars as $sidebar ){
register_sidebar( array(
'name' => esc_html( $sidebar['name'] ),
'id' => esc_attr( $sidebar['id'] ),
'description' => esc_html( $sidebar['description'] ),
'before_widget' => '
',
'before_title' => '
',
) );
}
}
add_action( 'widgets_init', 'blossom_coach_widgets_init' );