function mytheme_customize_register( $wp_customize ) {
$wp_customize->add_section( 'mytheme_company_section' , array(
'title' => __( 'Custom Theme Option', 'mytheme' ),
'priority' => 30,
));
$wp_customize->add_setting( 'mytheme_company-name', array());
$wp_customize->add_control( new WP_Customize_Upload_Control(
$wp_customize,
'mytheme_company_control',
array(
'label' => __( 'Company Name', 'mytheme' ),
'section' => 'mytheme_company_section',
'settings' => 'mytheme_company-name',
'priority' => 1
)
)
);
// ..repeat ->add_setting() and ->add_control() for mytheme_company-division
}
add_action( 'customize_register', 'mytheme_customize_register' );
// How to get
echo get_theme_mod( "mytheme_company-name" );
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter