Function Reference: geodir_sc_event_calendar

Summary

This function has not been documented yet.

Source File

geodir_sc_event_calendar() is located in geodir_event_manager/gdevents_shortcodes.php [Line: 76]

Source Code

function geodir_sc_event_calendar( $atts ) {
	ob_start();
	$defaults = array(
		'title' => '',
		'day'   => '',
		'before_widget'		  => '',
		'after_widget'		  => '',
		'before_title'		  => '

', 'after_title' => '

' ); $params = shortcode_atts( $defaults, $atts ); geodir_event_calendar_widget_output($params, $params); $output = ob_get_contents(); ob_end_clean(); return $output; }