$this->name, 'echo' => 0, 'hide_empty' => false, 'show_option_none' => false, 'hide_if_empty' => false, ) ); $dropdown = str_replace('get_link(), $dropdown ); printf( '', $this->label, $dropdown ); echo '

'. __( 'Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.', 'automobile' ) . '

'; } } //Custom control for dropdown category multiple select class Automobile_Important_Links extends WP_Customize_Control { public $type = 'important-links'; public function render_content() { //Add Theme instruction, Support Forum, Changelog, Donate link, Review, Facebook, Twitter, Google+, Pinterest links $important_links = array( 'theme_instructions' => array( 'link' => esc_url( 'https://catchthemes.com/theme-instructions/automobile/' ), 'text' => __( 'Theme Instructions', 'automobile' ), ), 'support' => array( 'link' => esc_url( 'https://catchthemes.com/support/' ), 'text' => __( 'Support', 'automobile' ), ), 'changelog' => array( 'link' => esc_url( 'https://catchthemes.com/changelogs/automobiletheme/' ), 'text' => __( 'Changelog', 'automobile' ), ), 'donate' => array( 'link' => esc_url( 'http://catchthemes.com/donate/' ), 'text' => __( 'Donate Now', 'automobile' ), ), 'review' => array( 'link' => esc_url( 'https://wordpress.org/support/view/theme-reviews/automobile' ), 'text' => __( 'Review', 'automobile' ), ), ); foreach ( $important_links as $important_link) { echo '

' . esc_attr( $important_link['text'] ) .'

'; } } }