'alchemist_feat_cont_jetpack_note',
'sanitize_callback' => 'sanitize_text_field',
'custom_control' => 'Alchemist_Note_Control',
'label' => sprintf( esc_html__( 'For all Featured Content Options for Alchemist Theme, go %1$shere%2$s', 'alchemist' ),
'',
''
),
'section' => 'feat_cont',
'type' => 'description',
'priority' => 1,
)
);
$wp_customize->add_section( 'alchemist_feat_cont', array(
'title' => esc_html__( 'Featured Content', 'alchemist' ),
'panel' => 'alchemist_theme_options',
)
);
$action = 'install-plugin';
$slug = 'essential-content-types';
$install_url = wp_nonce_url(
add_query_arg(
array(
'action' => $action,
'plugin' => $slug
),
admin_url( 'update.php' )
),
$action . '_' . $slug
);
// Add note to ECT Featured Content Section
alchemist_register_option( $wp_customize, array(
'name' => 'alchemist_featured_content_etc_note',
'sanitize_callback' => 'sanitize_text_field',
'custom_control' => 'Alchemist_Note_Control',
'active_callback' => 'alchemist_is_ect_featured_content_inactive',
/* translators: 1: /link tag start, 2: /link tag close. */
'label' => sprintf( esc_html__( 'For Featured Content, install %1$sEssential Content Types%2$s Plugin with Featured Content Type Enabled', 'alchemist' ),
'',
''
),
'section' => 'alchemist_feat_cont',
'type' => 'description',
'priority' => 1,
)
);
// Add color scheme setting and control.
alchemist_register_option( $wp_customize, array(
'name' => 'alchemist_feat_cont_option',
'default' => 'disabled',
'active_callback' => 'alchemist_is_ect_featured_content_active',
'sanitize_callback' => 'alchemist_sanitize_select',
'choices' => alchemist_section_visibility_options(),
'label' => esc_html__( 'Enable on', 'alchemist' ),
'section' => 'alchemist_feat_cont',
'type' => 'select',
)
);
alchemist_register_option( $wp_customize, array(
'name' => 'alchemist_feat_cont_cpt_note',
'sanitize_callback' => 'sanitize_text_field',
'custom_control' => 'Alchemist_Note_Control',
'active_callback' => 'alchemist_is_feat_cont_active',
/* translators: 1: /link tag start, 2: /link tag close. */
'label' => sprintf( esc_html__( 'For CPT heading and sub-heading, go %1$shere%2$s', 'alchemist' ),
'',
''
),
'section' => 'alchemist_feat_cont',
'type' => 'description',
)
);
alchemist_register_option( $wp_customize, array(
'name' => 'alchemist_feat_cont_number',
'default' => 3,
'sanitize_callback' => 'alchemist_sanitize_number_range',
'active_callback' => 'alchemist_is_feat_cont_active',
'description' => esc_html__( 'Save and refresh the page if No. of Featured Content is changed (Max no of items: 20)', 'alchemist' ),
'input_attrs' => array(
'style' => 'width: 100px;',
'min' => 0,
),
'label' => esc_html__( 'No of Items', 'alchemist' ),
'section' => 'alchemist_feat_cont',
'type' => 'number',
)
);
$number = get_theme_mod( 'alchemist_feat_cont_number', 3 );
//loop for featured post content
for ( $i = 1; $i <= $number ; $i++ ) {
alchemist_register_option( $wp_customize, array(
'name' => 'alchemist_feat_cont_cpt_' . $i,
'sanitize_callback' => 'alchemist_sanitize_post',
'active_callback' => 'alchemist_is_feat_cont_active',
'label' => esc_html__( 'Featured Content', 'alchemist' ) . ' ' . $i ,
'section' => 'alchemist_feat_cont',
'type' => 'select',
'choices' => alchemist_generate_post_array( 'featured-content' ),
)
);
} // End for().
}
add_action( 'customize_register', 'alchemist_feat_cont_options', 10 );
/** Active Callback Functions **/
if( ! function_exists( 'alchemist_is_feat_cont_active' ) ) :
/**
* Return true if featured content is active
*
* @since Alchemist 1.0
*/
function alchemist_is_feat_cont_active( $control ) {
$enable = $control->manager->get_setting( 'alchemist_feat_cont_option' )->value();
return ( alchemist_is_ect_featured_content_active( $control ) && alchemist_check_section( $enable ) );
}
endif;
if ( ! function_exists( 'alchemist_is_ect_featured_content_active' ) ) :
/**
* Return true if featured_content is active
*
* @since Alchemist 1.0
*/
function alchemist_is_ect_featured_content_active( $control ) {
return ( class_exists( 'Essential_Content_Featured_Content' ) || class_exists( 'Essential_Content_Pro_Featured_Content' ) );
}
endif;
if ( ! function_exists( 'alchemist_is_ect_featured_content_inactive' ) ) :
/**
* Return true if featured_content is active
*
* @since Alchemist 1.0
*/
function alchemist_is_ect_featured_content_inactive( $control ) {
return ! ( class_exists( 'Essential_Content_Featured_Content' ) || class_exists( 'Essential_Content_Pro_Featured_Content' ) );
}
endif;