// --- Customizer Panel Settings for Brainly-like Layout --- function qam_customize_register( $wp_customize ) { // Panel: Brainly Post Settings $wp_customize->add_section( 'qam_post_settings', array( 'title' => __( 'Question & Answer Page Settings', 'qam-theme' ), 'priority' => 30, ) ); // Question Border Color $wp_customize->add_setting( 'qam_q_border_color', array( 'default' => '#27ae60', 'transport' => 'refresh', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'qam_q_border_color', array( 'label' => __( 'Question Box Border Color', 'qam-theme' ), 'section' => 'qam_post_settings', 'settings' => 'qam_q_border_color', ) ) ); // Active Rating/Like Color $wp_customize->add_setting( 'qam_active_action_color', array( 'default' => '#27ae60', 'transport' => 'refresh', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'qam_active_action_color', array( 'label' => __( 'Liked / Rated Active Color', 'qam-theme' ), 'section' => 'qam_post_settings', 'settings' => 'qam_active_action_color', ) ) ); // Show/Hide Meta Dates Toggle $wp_customize->add_setting( 'qam_show_post_dates', array( 'default' => 'hide', 'transport' => 'refresh', ) ); $wp_customize->add_control( 'qam_show_post_dates', array( 'label' => __( 'Display Dates on Question/Answers', 'qam-theme' ), 'section' => 'qam_post_settings', 'type' => 'radio', 'choices' => array( 'show' => __( 'Show Date', 'qam-theme' ), 'hide' => __( 'Hide Date', 'qam-theme' ), ), ) ); } add_action( 'customize_register', 'qam_customize_register' ); HOME -

Explore Subdomains

विभिन्न विषयों के उत्तर खोजने के लिए सब-डोमेन्स पर जाएँ:

📐 Math Portal 🔬 Science Portal 📚 GK Portal

Recent Questions