The only issue with that, is it also disables it on the index. I just want it disabled in the post only. Since in the post it looks better if I just include the date in the pageheader.
add_filter( 'generate_post_date','generate_remove_single_date' );
function generate_remove_single_date()
{
// If we're on a single post, remove the date
if ( is_single() )
return false;
// Or else, show it
return true;
}
Figured out what was wrong. I thought I could only use the .zip plugin that you linked, but you do indeed need the one you linked to the WP plugins catalog.