2024-01-09 16:13:20 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Register widget area.
|
|
|
|
*
|
|
|
|
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registerin g-a-sidebar
|
|
|
|
*/
|
2024-01-13 13:44:31 +01:00
|
|
|
function ofisuport_widgets_init() {
|
2024-01-09 16:13:20 +01:00
|
|
|
register_sidebar(
|
|
|
|
array(
|
2024-01-13 13:44:31 +01:00
|
|
|
'name' => esc_html__( 'Front Page - principal', 'ofisuport' ),
|
2024-01-09 16:13:20 +01:00
|
|
|
'id' => 'front-page-widgets',
|
2024-01-13 13:44:31 +01:00
|
|
|
'description' => esc_html__( 'Add widgets here.', 'ofisuport' ),
|
2024-01-09 16:13:20 +01:00
|
|
|
'before_widget' => '<section id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => '</section>',
|
|
|
|
'before_title' => '<h2 class="widget-title">',
|
|
|
|
'after_title' => '</h2>',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
register_sidebar(
|
|
|
|
array(
|
2024-01-13 13:44:31 +01:00
|
|
|
'name' => esc_html__( 'Sidebar funds - Lateral ajuts', 'ofisuport' ),
|
2024-01-09 16:13:20 +01:00
|
|
|
'id' => 'sidebar-funds',
|
2024-01-13 13:44:31 +01:00
|
|
|
'description' => esc_html__( 'Add widgets here.', 'ofisuport' ),
|
2024-01-09 16:13:20 +01:00
|
|
|
'before_widget' => '<section id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => '</section>',
|
|
|
|
'before_title' => '<h2 class="widget-title">',
|
|
|
|
'after_title' => '</h2>',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
register_sidebar(
|
|
|
|
array(
|
2024-01-13 13:44:31 +01:00
|
|
|
'name' => esc_html__( 'Footer - Peu', 'ofisuport' ),
|
2024-01-09 16:13:20 +01:00
|
|
|
'id' => 'footer-widgets',
|
2024-01-13 13:44:31 +01:00
|
|
|
'description' => esc_html__( 'Add widgets here.', 'ofisuport' ),
|
2024-01-09 16:13:20 +01:00
|
|
|
'before_widget' => '<section id="%1$s" class="widget %2$s">',
|
|
|
|
'after_widget' => '</section>',
|
|
|
|
'before_title' => '<h2 class="widget-title">',
|
|
|
|
'after_title' => '</h2>',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2024-01-13 13:44:31 +01:00
|
|
|
add_action( 'widgets_init', 'ofisuport_widgets_init' );
|
2024-01-09 16:13:20 +01:00
|
|
|
|