=' ) ) { $emstart = ''; $emend = ''; } else $emstart = $emend = ''; // Primary Sidebar hybrid_register_sidebar( array( 'id' => 'hoot-primary-sidebar', 'name' => _x( 'Primary Sidebar', 'sidebar', 'metrolo' ), 'description' => __( 'The main sidebar used throughout the site.', 'metrolo' ) ) ); // Secondary Sidebar hybrid_register_sidebar( array( 'id' => 'hoot-secondary-sidebar', 'name' => _x( 'Secondary Sidebar', 'sidebar', 'metrolo' ), 'description' => __( 'The secondary sidebar used throughout the site (if you are using a 3 column layout with 2 sidebars).', 'metrolo' ) ) ); // Topbar Left Widget Area hybrid_register_sidebar( array( 'id' => 'hoot-topbar-left', 'name' => _x( 'Topbar Left', 'sidebar', 'metrolo' ), 'description' => __( 'Leave empty if you dont want to show topbar.', 'metrolo' ) ) ); // Topbar Right Widget Area hybrid_register_sidebar( array( 'id' => 'hoot-topbar-right', 'name' => _x( 'Topbar Right', 'sidebar', 'metrolo' ), 'description' => __( 'Leave empty if you dont want to show topbar.', 'metrolo' ) ) ); // Below Header Widget Area hybrid_register_sidebar( array( 'id' => 'hoot-below-header', 'name' => _x( 'Below Header', 'sidebar', 'metrolo' ), 'description' => __( 'This area is often used for displaying context specific menus, advertisements, and third party breadcrumb plugins.', 'metrolo' ) ) ); // Subfooter Widget Area hybrid_register_sidebar( array( 'id' => 'hoot-sub-footer', 'name' => _x( 'Sub Footer', 'sidebar', 'metrolo' ), 'description' => __( 'Leave empty if you dont want to show subfooter.', 'metrolo' ) ) ); // Footer Columns $footercols = hoot_get_footer_columns(); if( $footercols ) : $alphas = range('a', 'z'); for ( $i=0; $i < 4; $i++ ) : if ( isset( $alphas[ $i ] ) ) : hybrid_register_sidebar( array( 'id' => 'hoot-footer-' . $alphas[ $i ], 'name' => sprintf( _x( 'Footer %s Column', 'sidebar', 'metrolo' ), strtoupper( $alphas[ $i ] ) ), 'description' => ( $i < $footercols ) ? '' : ' ' . $emstart . sprintf( __( 'This column is currently NOT VISIBLE on your site. To activate it, go to Appearance > Customize > Footer > Select a layout with more than %1$s columns', 'metrolo' ), $i ) . $emend, ) ); endif; endfor; endif; } /** * Registers frontpage widget areas. * * @since 1.0 * @access public * @return void */ function hoot_frontpage_register_sidebars() { $areas = array(); global $wp_version; if ( version_compare( $wp_version, '4.9.7', '>=' ) ) { $emstart = ''; $emend = ''; } else $emstart = $emend = ''; /* Set up defaults */ $defaults = apply_filters( 'hoot_frontpage_widget_areas', array( 'a', 'b', 'c', 'd', 'e' ) ); $locations = apply_filters( 'hoot_frontpage_widget_area_names', array( __( 'Left', 'metrolo' ), __( 'Center Left', 'metrolo' ), __( 'Center', 'metrolo' ), __( 'Center Right', 'metrolo' ), __( 'Right', 'metrolo' ), ) ); // Get user settings $sections = hybridextend_sortlist( hoot_get_mod( 'frontpage_sections' ) ); foreach ( $defaults as $key ) { $id = "area_{$key}"; if ( empty( $sections[$id]['sortitem_hide'] ) ) { $columns = ( isset( $sections[$id]['columns'] ) ) ? $sections[$id]['columns'] : ''; $count = count( explode( '-', $columns ) ); // empty $columns still returns array of length 1 $location = ''; for ( $c = 1; $c <= $count ; $c++ ) { switch ( $count ) { case 2: $location = ($c == 1) ? $locations[0] : $locations[4]; break; case 3: $location = ($c == 1) ? $locations[0] : ( ($c == 2) ? $locations[2] : $locations[4] ); break; case 4: $location = ($c == 1) ? $locations[0] : ( ($c == 2) ? $locations[1] : ( ($c == 3) ? $locations[3] : $locations[4] ) ); } $areas[ $id . '_' . $c ] = sprintf( __( 'Frontpage - Widget Area %s %s', 'metrolo' ), strtoupper( $key ), $location ); } } } foreach ( $areas as $key => $name ) { hybrid_register_sidebar( array( 'id' => 'hoot-frontpage-' . $key, 'name' => $name, 'description' => __( 'You can reorder and change the number of columns in Appearance > Customize > Frontpage Modules', 'metrolo' ), ) ); } }