Hi slny311,
in your tribe_get_events query you are trying to concatenate a date with a category which won’t work.
get_posts does not have a ‘date’ parameter so your not going to be able to use that.
Just of the top of my head I would get today’s date, and then run a conditional to see if the date of the post is equal to today’s date and if so, then display the post.
something like if (the_date() == $today) {
do this….
}
you’ll have to google around to see how to write this correctly.
Hope that helps!