__( 'Desktop Horizontal Menu', 'athlonx' ), 'expanded' => __( 'Desktop Expanded Menu', 'athlonx' ), 'mobile' => __( 'Mobile Menu', 'athlonx' ), 'footer' => __( 'Footer Menu', 'athlonx' ), 'social' => __( 'Social Menu', 'athlonx' ), ) ); } /** * Register all theme sidebase. */ function athlonx_sidebars() { register_sidebar( array( 'name' => __( 'Sidebar Left', 'athlonx' ), 'id' => 'content-sidebar-1', 'description' => __( 'Add widgets on the left side of the main content area.', 'athlonx' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Sidebar Right', 'athlonx' ), 'id' => 'content-sidebar-2', 'description' => __( 'Add widgets on the right side of the main content area.', 'athlonx' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Top Bar Left', 'athlonx' ), 'id' => 'top-sidebar-1', 'description' => __( 'Add any widgets on the left side of the top bar area. Works best with a Text widget.', 'athlonx' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '', ) ); register_sidebar( array( 'name' => __( 'Top Bar Right', 'athlonx' ), 'id' => 'top-sidebar-2', 'description' => __( 'Add widgets on the right side of the top bar area. Works best with the Social Icons navigation menu or Text widget.', 'athlonx' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '', ) ); register_sidebar( array( 'name' => __( 'Footer #1', 'athlonx' ), 'id' => 'foot-sidebar-1', 'description' => __( 'Add any widgets on the 1st level of the footer area.', 'athlonx' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer #2', 'athlonx' ), 'id' => 'foot-sidebar-2', 'description' => __( 'Add any widgets on the 2nd level of the footer area.', 'athlonx' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer #3', 'athlonx' ), 'id' => 'foot-sidebar-3', 'description' => __( 'Add any widgets on the 3rd level of the footer area.', 'athlonx' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); register_sidebar( array( 'name' => __( 'Footer #4', 'athlonx' ), 'id' => 'foot-sidebar-4', 'description' => __( 'Add widgets on the 4th level of the footer area. Works best with the Image Gallery widget for sponsored logos or similar content.', 'athlonx' ), 'before_widget' => '', 'before_title' => '
', 'after_title' => '
', ) ); }