Hello. Thanks for the advice. How’s your plugin going?
I’m still trying to figure out how to remove the links to previous months. I think it has something to do with this bit of code (Correct me if I’m wrong):
// Get the next and previous month and year with at least one post
$previous = $wpdb->get_row(“SELECT DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
FROM $wpdb->posts
WHERE post_date < ‘$thisyear-$thismonth-01’
AND post_status = ‘publish’
ORDER BY post_date DESC
LIMIT 1″);
$next = $wpdb->get_row(“SELECT DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
FROM $wpdb->posts
WHERE post_date > ‘$thisyear-$thismonth-01’
AND MONTH( post_date ) != MONTH( ‘$thisyear-$thismonth-01’ )
AND post_status = ‘publish’
ORDER BY post_date ASC
LIMIT 1″);
Though I don’t know where to start messing around with it. It’s under the wp-includes\template-functions-general.php file.