array( 'id' => 'slidebar_left', 'class' => 'slidebar_left', 'name' => esc_html__( 'Slidebar Left', 'shapeshifter' ), 'description' => esc_html__( 'Slidebar located on the left of the window. This widget area is NOT Displayed in Mobile. When Theme Customizer Setting "Is Responsive ON" is checked, You can pull the Slidebar in Responsive One Column Style because of Narrower Window.', 'shapeshifter' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ), 'sidebar_left' => array( 'id' => 'sidebar_left', 'class' => 'sidebar_left', 'name' => esc_html__( 'Sidebar Left', 'shapeshifter' ), 'description' => esc_html__( 'Sidebar located on the left of the main content. This widget area is NOT Displayed in Mobile.', 'shapeshifter' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ), 'sidebar_left_fixed' => array( 'id' => 'sidebar_left_fixed', 'class' => 'sidebar_left_fixed', 'name' => esc_html__( 'Sidebar Left Fixed', 'shapeshifter' ), 'description' => esc_html__( 'Sidebar located below Sidebar Left that can be fixed. This widget area is NOT Displayed in Mobile.', 'shapeshifter' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ), 'slidebar_right' => array( 'id' => 'slidebar_right', 'class' => 'slidebar_right', 'name' => esc_html__( 'Slidebar Right', 'shapeshifter' ), 'description' => esc_html__( 'Slidebar located on the right of the window. This widget area is NOT Displayed in Mobile. When Theme Customizer Setting "Is Responsive ON" is checked, You can pull the Slidebar in Responsive One Column Style because of Narrower Window.', 'shapeshifter' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ), 'sidebar_right' => array( 'id' => 'sidebar_right', 'class' => 'sidebar_right', 'name' => esc_html__( 'Sidebar Right', 'shapeshifter' ), 'description' => esc_html__( 'Sidebar located on the right of the main content. This widget area is NOT Displayed in Mobile.', 'shapeshifter' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ), 'sidebar_right_fixed' => array( 'id' => 'sidebar_right_fixed', 'class' => 'sidebar_right_fixed', 'name' => esc_html__( 'Sidebar Right Fixed', 'shapeshifter' ), 'description' => esc_html__( 'Sidebar located below Sidebar Right that can be fixed. This widget area is NOT Displayed in Mobile.', 'shapeshifter' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ), 'mobile_sidebar' => array( 'id' => 'mobile_sidebar', 'class' => 'mobile_sidebar', 'name' => esc_html__( 'Mobile Slidebar', 'shapeshifter' ), 'description' => esc_html__( 'This is the Slidebar on Right Side which is displayed ONLY in Mobile Page. This Area Shows and Hides when Button "Widget" at the bottom is clicked.', 'shapeshifter' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', 'after_title' => '

    ', ), ); // Actions // Register Widget Areas add_action( 'widgets_init', array( __CLASS__, 'register_widget_areas' ) ); // End Hook for Plugins // action hook "shapeshifter_trigger_register_widget_areas" shapeshifter_trigger_register_widget_areas(); } /** * Register Widget Areas **/ public static function register_widget_areas() { // Standard Widget Areas foreach( self::$standard_widget_areas as $id => $data ) register_sidebar( $data ); } /** * Register Widget Areas **/ public static function get_registered_widget_areas() { return self::$standard_widget_areas; } } ?>