hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/c/h/r/chryzalihi/www/wp-contentOLD/themes/rakiya/library/inc/ |
<?php
/**
* Helper functions for working with the WordPress sidebar system. Currently, the framework creates a
* simple function for registering HTML5-ready sidebars instead of the default WordPress unordered lists.
*
* @package HybridCore
* @subpackage Includes
* @author Justin Tadlock <justin@justintadlock.com>
* @copyright Copyright (c) 2008 - 2015, Justin Tadlock
* @link http://themehybrid.com/hybrid-core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
/**
* Wrapper function for WordPress' register_sidebar() function. This function exists so that theme authors
* can more quickly register sidebars with an HTML5 structure instead of having to write the same code
* over and over. Theme authors are also expected to pass in the ID, name, and description of the sidebar.
* This function can handle the rest at that point.
*
* @since 2.0.0
* @access public
* @param array $args
* @return string Sidebar ID.
*/
function hybrid_register_sidebar( $args ) {
// Set up some default sidebar arguments.
$defaults = array(
'id' => '',
'name' => '',
'description' => '',
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h3 class="widget-title"><span>',
'after_title' => '</span></h3>'
);
// Parse the arguments.
$args = wp_parse_args( $args, apply_filters( 'hybrid_sidebar_defaults', $defaults ) );
// Remove action.
remove_action( 'widgets_init', '__return_false', 95 );
// Register the sidebar.
return register_sidebar( apply_filters( 'hybrid_sidebar_args', $args ) );
}
# Compatibility for when a theme doesn't register any sidebars.
add_action( 'widgets_init', '__return_false', 95 );
/**
* Function for grabbing a dynamic sidebar name.
*
* @since 2.0.0
* @access public
* @global array $wp_registered_sidebars
* @param string $sidebar_id
* @return string
*/
function hybrid_get_sidebar_name( $sidebar_id ) {
global $wp_registered_sidebars;
return isset( $wp_registered_sidebars[ $sidebar_id ] ) ? $wp_registered_sidebars[ $sidebar_id ]['name'] : '';
}