add_section( 'theme_info',
array(
'title' => __( 'Information Links', 'blossom-floral-pro' ),
'priority' => 5,
)
);
/** Important Links */
$wp_customize->add_setting( 'theme_info_theme',
array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
)
);
$theme_info = '
';
$theme_info .= sprintf( __( '- View demo: %1$sClick here.%2$s
', 'blossom-floral-pro' ), '', '' );
$theme_info .= sprintf( __( '- View documentation: %1$sClick here.%2$s
', 'blossom-floral-pro' ), '', '' );
$theme_info .= sprintf( __( '- Theme info: %1$sClick here.%2$s
', 'blossom-floral-pro' ), '', '' );
$theme_info .= sprintf( __( '- Support ticket: %1$sClick here.%2$s
', 'blossom-floral-pro' ), '', '' );
$theme_info .= sprintf( __( '- More WordPress Themes: %1$sClick here.%2$s
', 'blossom-floral-pro' ), '', '' );
$theme_info .= '
';
$wp_customize->add_control( new Blossom_Floral_Pro_Note_Control( $wp_customize,
'theme_info_theme',
array(
'label' => __( 'Important Links' , 'blossom-floral-pro' ),
'section' => 'theme_info',
'description' => $theme_info
)
)
);
}
add_action( 'customize_register', 'blossom_floral_pro_customizer_theme_info' );