Not really possible… but as slight workaround you could you use the plug-in’s functions to make one. For instance: EO_Calendar_Widget::generate_output($month, $args)
will display the calendar for the given month. $args
is optional and is passed to the query. $month
should be a datetime object, the first day of the month.
For example, to display November:
$tz = eo_get_blog_timezone();
$nov= date_create('2012-11-01',$tz);
echo EO_Calendar_Widget::generate_output($nov);
$dec= date_create('2012-12-01',$tz);
echo EO_Calendar_Widget::generate_output($dec);
This is a private function – what that means is I might remove/rename it (but not in the next few months ?? ). In any case I shall probably replace it with a dedicated function to do something like this. Note, no javascript is loaded so you won’t be able to navigate between months.
The above code can go in your theme, or you can create a dedicated widget for it.
Hope that helps!