add_section( 'theme_info' , array( 'title' => __( 'Information Links' , 'business-one-page' ), 'priority' => 500, )); $wp_customize->add_setting('theme_info_theme',array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', )); $theme_info = ''; $theme_info .= '
';
$wp_customize->add_control( new Theme_Info_Custom_Control( $wp_customize ,'theme_info_more_theme',array(
'label' => __( 'Pro Version' , 'business-one-page' ),
'section' => 'theme_info',
'description' => $theme_info
)));
$wp_customize->add_setting('theme_info_pro_theme',array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
));
}
add_action( 'customize_register', 'business_one_page_customizer_theme_info' );
if( class_exists( 'WP_Customize_control' ) ){
class Theme_Info_Custom_Control extends WP_Customize_Control
{
/**
* Render the content on the theme customizer page
*/
public function render_content()
{
?>