so i tried this one out, and it works, but i have my issues, cause of course i want to pull out the owners id dynamically.
this works fine
if (class_exists('EM_Events')) {
echo EM_Events::output( array('owner'=>3) );
}
but this pulls out the id on top of the (not correctly filtered) list..
if (class_exists('EM_Events')) {
echo EM_Events::output( array('owner'=>the_author_meta(ID)) );
}
??