Issue displaying customiser setting with get_theme_mod

The settings attribute you’re using for add_control() is expecting an array of all settings tied to the control while you’re passing a string. The attribute you want is the singular setting which is expecting the string value of the primary setting for the control. So try this: $wp_customize->add_control( ‘button_1_text’, array( ‘label’ => __( ‘Primary Button’, … Read more