﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
9514,Add 'page' class to the get_body_class() function,nathanrice,,"Currently, there is no 'page' class assigned to the $classes array in the get_body_class() function. Consequently, there would be no way for CSS to target ""all pages"" with a single selector.

This is my first ticket, so I hope I did this the right way.

I've attached a diff file that adds the following code to wp-includes/post-template.php within the is_page() conditional:

{{{
if ($pageID != get_option('page_for_posts'))
	$classes[] = 'page';
}}}

I feel like this is an important addition to the classes that this function generates.",enhancement,closed,normal,2.8,Themes,2.8,normal,fixed,has-patch tested,ryan
