Astra_Learndash_Sidebar_Configs::register_configuration( Array $configurations, WP_Customize_Manager $wp_customize )
Register LearnDash Sidebar settings.
Description
Parameters
- $configurations
-
(Array) (Required) Astra Customizer Configurations.
- $wp_customize
-
(WP_Customize_Manager) (Required) instance of WP_Customize_Manager.
Return
(Array) Astra Customizer Configurations with updated configurations.
Source
File: inc/compatibility/learndash/customizer/sections/class-astra-learndash-sidebar-configs.php
public function register_configuration( $configurations, $wp_customize ) {
$_configs = array(
/**
* Option: LearnDash
*/
array(
'name' => ASTRA_THEME_SETTINGS . '[learndash-sidebar-layout]',
'type' => 'control',
'control' => 'ast-select',
'section' => 'section-sidebars',
'divider' => array( 'ast_class' => 'ast-top-divider' ),
'default' => astra_get_option( 'learndash-sidebar-layout' ),
'priority' => 5,
'title' => __( 'LearnDash', 'astra' ),
'description' => __( 'This layout will apply on all single course, lesson, topic and quiz.', 'astra' ),
'choices' => array(
'default' => __( 'Default', 'astra' ),
'no-sidebar' => __( 'No Sidebar', 'astra' ),
'left-sidebar' => __( 'Left Sidebar', 'astra' ),
'right-sidebar' => __( 'Right Sidebar', 'astra' ),
),
),
);
return array_merge( $configurations, $_configs );
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 1.4.3 | Introduced. |