'; /* translators: singular download label */ $text = sprintf( __( 'Insert %s', 'easy-digital-downloads' ), edd_get_label_singular() ); // Output the thickbox button echo '' . $icon . esc_html( $text ) . ''; } add_action( 'media_buttons', 'edd_media_button', 11 ); /** * Admin Footer For Thickbox * * Prints the footer code needed for the Insert Download * TinyMCE button. * * @since 1.0 * @global $pagenow * @global $typenow * @return void */ function edd_admin_footer_for_thickbox() { // Bail if not a post new/edit screen if ( ! edd_is_insertable_admin_page() ) { return; } // Styles $styles = array( 'text link' => esc_html__( 'Link', 'easy-digital-downloads' ), 'button' => esc_html__( 'Button', 'easy-digital-downloads' ) ); // Colors $colors = edd_get_button_colors(); ?>