Server IP : 192.158.238.246 / Your IP : 3.129.89.50 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jenniferflocom/www/wp-content/themes/simple-glassy/inc/ |
Upload File : |
<?php /** * Declaring widgets * * @package SimpleGlassy */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /** * Add filter to the parameters passed to a widget's display callback. * The filter is evaluated on both the front and the back end! * * @link https://developer.wordpress.org/reference/hooks/dynamic_sidebar_params/ */ add_filter( 'dynamic_sidebar_params', 'simpleglassy_widget_classes' ); if ( ! function_exists( 'simpleglassy_widget_classes' ) ) { /** * Count number of visible widgets in a sidebar and add classes to widgets accordingly, * so widgets can be displayed one, two, three or four per row. * * @global array $sidebars_widgets * * @param array $params { * @type array $args { * An array of widget display arguments. * * @type string $name Name of the sidebar the widget is assigned to. * @type string $id ID of the sidebar the widget is assigned to. * @type string $description The sidebar description. * @type string $class CSS class applied to the sidebar container. * @type string $before_widget HTML markup to prepend to each widget in the sidebar. * @type string $after_widget HTML markup to append to each widget in the sidebar. * @type string $before_title HTML markup to prepend to the widget title when displayed. * @type string $after_title HTML markup to append to the widget title when displayed. * @type string $widget_id ID of the widget. * @type string $widget_name Name of the widget. * } * @type array $widget_args { * An array of multi-widget arguments. * * @type int $number Number increment used for multiples of the same widget. * } * } * @return array $params */ function simpleglassy_widget_classes( $params ) { global $sidebars_widgets; /* * When the corresponding filter is evaluated on the front end * this takes into account that there might have been made other changes. */ $sidebars_widgets_count = apply_filters( 'sidebars_widgets', $sidebars_widgets ); // Only apply changes if sidebar ID is set and the widget's classes depend on the number of widgets in the sidebar. if ( isset( $params[0]['id'] ) && strpos( $params[0]['before_widget'], 'dynamic-classes' ) ) { $sidebar_id = $params[0]['id']; $widget_count = count( $sidebars_widgets_count[ $sidebar_id ] ); $widget_classes = 'widget-count-' . $widget_count; if ( $widget_count >= 3 ) { // Three widgets per row if there's three or more widgets. $widget_classes .= ' col-sm-6 col-md-4'; } elseif ( 2 === $widget_count ) { // If two widgets are published. $widget_classes .= ' col-sm-6'; } elseif ( 1 === $widget_count ) { // If just one widget is active. $widget_classes .= ' col'; } // Replace the placeholder class 'dynamic-classes' with the classes stored in $widget_classes. $params[0]['before_widget'] = str_replace( 'dynamic-classes', $widget_classes, $params[0]['before_widget'] ); } return $params; } } // endif function_exists( 'simpleglassy_widget_classes' ). add_action( 'widgets_init', 'simpleglassy_widgets_init' ); if ( ! function_exists( 'simpleglassy_widgets_init' ) ) { /** * Initializes themes widgets. */ function simpleglassy_widgets_init() { register_sidebar( array( 'name' => __( 'Right Sidebar', 'simple-glassy' ), 'id' => 'right-sidebar', 'description' => __( 'Right sidebar widget area', 'simple-glassy' ), 'before_widget' => '<aside id="%1$s" class="widget p-3 bg-glassy rounded %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Top Widgets', 'simple-glassy' ), 'id' => 'statichero', 'description' => __( 'Full top widget with dynamic grid', 'simple-glassy' ), 'before_widget' => '<div id="%1$s" class="static-hero-widget widget %2$s dynamic-classes">', 'after_widget' => '</div><!-- .static-hero-widget -->', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Footer Widgets', 'simple-glassy' ), 'id' => 'footerfull', 'description' => __( 'Full sized footer widget with dynamic grid', 'simple-glassy' ), 'before_widget' => '<div id="%1$s" class="footer-widget widget px-2 %2$s dynamic-classes"><div class="p-3 mb-3 bg-glassy rounded">', 'after_widget' => '</div></div><!-- .footer-widget -->', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } } // endif function_exists( 'simpleglassy_widgets_init' ).