Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
bist
/
wp-content
/
themes
/
educollege
/
inc
/
customizer
/
theme-options
/
✏️
Editing: homepage-static.php
<?php /** * Homepage (Static ) options * * @package Theme Palace * @subpackage Educollege * @since Educollege 1.0.0 */ // Homepage (Static ) setting and control. $wp_customize->add_setting( 'educollege_theme_options[enable_frontpage_content]', array( 'sanitize_callback' => 'educollege_sanitize_checkbox', 'default' => $options['enable_frontpage_content'], ) ); $wp_customize->add_control( 'educollege_theme_options[enable_frontpage_content]', array( 'label' => esc_html__( 'Enable Content', 'educollege' ), 'description' => esc_html__( 'Check to enable content on static front page only.', 'educollege' ), 'section' => 'static_front_page', 'type' => 'checkbox', 'active_callback' => 'educollege_is_static_homepage_enable', ) );
💾 Save
❌ Cancel