Only get titles of published posts.

git-svn-id: https://develop.svn.wordpress.org/trunk@196 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-06-09 01:02:00 +00:00
parent e7d19ca5c0
commit 5b5320fd8f
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ $k = 1;
// original tooltip hack by Alex King
if ($ak_use_tooltip_titles == 1) {
$ak_days_result = $wpdb->get_results("SELECT post_title, post_date FROM $tableposts WHERE YEAR(post_date) = '$thisyear' AND MONTH(post_date) = '$thismonth'");
$ak_days_result = $wpdb->get_results("SELECT post_title, post_date FROM $tableposts WHERE YEAR(post_date) = '$thisyear' AND MONTH(post_date) = '$thismonth' AND post_status = 'publish'");
$ak_day_title_array = array();
foreach($ak_days_result as $ak_temp) {