/home/edulekha/public_html/wp-content/themes/magone/includes/shortcodes/shortcodes-dropcap.php
<?php

function magone_shortcode_dropcap_display( $atts = array(), $content = "" ) {
	if ($content) {
		return '<span class="dropcap color firstcharacter">'.do_shortcode($content).'</span>';
	}
}