Skip to content

Instantly share code, notes, and snippets.

@jclapp23
Created July 25, 2013 13:40
Show Gist options
  • Save jclapp23/6079731 to your computer and use it in GitHub Desktop.
Save jclapp23/6079731 to your computer and use it in GitHub Desktop.
WP_Cal_Demo #5
<?php
$calendar_output .= '<td>';
if ( in_array($day, $daywithpost) ) // any posts today?
$calendar_output .= '<a href="' . get_day_link( $thisyear, $thismonth, $day ) . '" title="' . esc_attr( $ak_titles_for_day[ $day ] ) . "\">$day</a>";
else
$calendar_output .= $day;
$calendar_output .= '</td>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment