Allow slbd_count_widgets function to be overridden
Allow slbd_count_widgets function to be overridden by child them so that more responsive classes can be added if desired. e.g. `$widget_classes .= ' col-md-3 col-sm-6';`
This commit is contained in:
parent
be25a1fea4
commit
0ddf5ff086
|
@ -9,39 +9,40 @@
|
||||||
* Count number of widgets in a sidebar
|
* Count number of widgets in a sidebar
|
||||||
* Used to add classes to widget areas so widgets can be displayed one, two, three or four per row
|
* Used to add classes to widget areas so widgets can be displayed one, two, three or four per row
|
||||||
*/
|
*/
|
||||||
function slbd_count_widgets( $sidebar_id ) {
|
if ( ! function_exists( 'slbd_count_widgets' ) ) {
|
||||||
// If loading from front page, consult $_wp_sidebars_widgets rather than options
|
function slbd_count_widgets( $sidebar_id ) {
|
||||||
// to see if wp_convert_widget_settings() has made manipulations in memory.
|
// If loading from front page, consult $_wp_sidebars_widgets rather than options
|
||||||
global $_wp_sidebars_widgets;
|
// to see if wp_convert_widget_settings() has made manipulations in memory.
|
||||||
if ( empty( $_wp_sidebars_widgets ) ) :
|
global $_wp_sidebars_widgets;
|
||||||
$_wp_sidebars_widgets = get_option( 'sidebars_widgets', array() );
|
if ( empty( $_wp_sidebars_widgets ) ) :
|
||||||
endif;
|
$_wp_sidebars_widgets = get_option( 'sidebars_widgets', array() );
|
||||||
|
|
||||||
$sidebars_widgets_count = $_wp_sidebars_widgets;
|
|
||||||
|
|
||||||
if ( isset( $sidebars_widgets_count[ $sidebar_id ] ) ) :
|
|
||||||
$widget_count = count( $sidebars_widgets_count[ $sidebar_id ] );
|
|
||||||
$widget_classes = 'widget-count-' . count( $sidebars_widgets_count[ $sidebar_id ] );
|
|
||||||
if ( $widget_count % 4 == 0 || $widget_count > 6 ) :
|
|
||||||
// Four widgets er row if there are exactly four or more than six
|
|
||||||
$widget_classes .= ' col-md-3';
|
|
||||||
elseif ( 6 == $widget_count ) :
|
|
||||||
// If two widgets are published
|
|
||||||
$widget_classes .= ' col-md-2';
|
|
||||||
elseif ( $widget_count >= 3 ) :
|
|
||||||
// Three widgets per row if there's three or more widgets
|
|
||||||
$widget_classes .= ' col-md-4';
|
|
||||||
elseif ( 2 == $widget_count ) :
|
|
||||||
// If two widgets are published
|
|
||||||
$widget_classes .= ' col-md-6';
|
|
||||||
elseif ( 1 == $widget_count ) :
|
|
||||||
// If just on widget is active
|
|
||||||
$widget_classes .= ' col-md-12';
|
|
||||||
endif;
|
endif;
|
||||||
return $widget_classes;
|
|
||||||
endif;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
$sidebars_widgets_count = $_wp_sidebars_widgets;
|
||||||
|
|
||||||
|
if ( isset( $sidebars_widgets_count[ $sidebar_id ] ) ) :
|
||||||
|
$widget_count = count( $sidebars_widgets_count[ $sidebar_id ] );
|
||||||
|
$widget_classes = 'widget-count-' . count( $sidebars_widgets_count[ $sidebar_id ] );
|
||||||
|
if ( $widget_count % 4 == 0 || $widget_count > 6 ) :
|
||||||
|
// Four widgets er row if there are exactly four or more than six
|
||||||
|
$widget_classes .= ' col-md-3';
|
||||||
|
elseif ( 6 == $widget_count ) :
|
||||||
|
// If two widgets are published
|
||||||
|
$widget_classes .= ' col-md-2';
|
||||||
|
elseif ( $widget_count >= 3 ) :
|
||||||
|
// Three widgets per row if there's three or more widgets
|
||||||
|
$widget_classes .= ' col-md-4';
|
||||||
|
elseif ( 2 == $widget_count ) :
|
||||||
|
// If two widgets are published
|
||||||
|
$widget_classes .= ' col-md-6';
|
||||||
|
elseif ( 1 == $widget_count ) :
|
||||||
|
// If just on widget is active
|
||||||
|
$widget_classes .= ' col-md-12';
|
||||||
|
endif;
|
||||||
|
return $widget_classes;
|
||||||
|
endif;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ( ! function_exists( 'understrap_widgets_init' ) ) {
|
if ( ! function_exists( 'understrap_widgets_init' ) ) {
|
||||||
/**
|
/**
|
||||||
|
|
Reference in New Issue