body_class( string|string[] $class = '' )
Displays the class names for the body element.
Contents
Description Description
Parameters Parameters
- $class
-
(string|string[]) (Optional) Space-separated string or array of class names to add to the class list.
Default value: ''
Source Source
File: wp-includes/post-template.php
function body_class( $class = '' ) { // Separates class names with a single space, collates class names for body element echo 'class="' . join( ' ', get_body_class( $class ) ) . '"'; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |
More Information More Information
This function gives the body element different classes and can be added, typically, in the header.php’s HTML body tag.
Basic Usage
The following example shows how to implement the body_class template tag into a theme.
<body <?php body_class(); ?>>
The actual HTML output might resemble something like this (the About the Tests page from the Theme Unit Test):
<body class="page page-id-2 page-parent page-template-default logged-in">
In the WordPress Theme stylesheet, add the appropriate styles, such as:
.page { /* styles for all posts within the page class */ } .page-id-2 { /* styles for only page ID number 2 */ } .logged-in { /* styles for all pageviews when the user is logged in */ }
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Adding More Classes
By default, the only classes will be those described above.
To add more classes, the template tag’s parameter can be added. For example, to add a unique class to the same template used above:
The results would be:
Add New Classes via Filter
You can add additional body classes by filtering the {@see ‘body_class’} hook.
To add the following to the WordPress Theme functions.php file, changing my_class_names and class-name to meet your needs:
Here’s a solution for adding a body class to a specific page template:
The result on the front-end:
The above example about how to remove inline classes via filters is incorrect.
Here is the correct way to do it:
# Function
body_class()
add some STATIC classes depends on the page, post, archive, blog, search, 404 etc.# List of all default static classes which are added to
Expand full source codeCollapse full source code
# Function
body_class()
also add some DYNAMIC classes as below:Expand full source codeCollapse full source code
You can check all these in function get_body_class()
To remove a class of the body_class function you have to do that:
The other functions mentioned above are not working since they are ignoring the keys of the array $classes and do not have the needed priority.
This is from
get_page_template_slug
as used by this function and is important to remember:If the template is stored in a Theme’s subdirectory (or a Parent Theme’s subdirectory of a Child Theme), the value of the wp_postmeta is both the folder and file names, e.g.:
my-templates/my-custom-template.php
Adding maijabrazen. Example if want remove author id from body class. If wish to remove Author name, use user_nicename
Remove Classes via Filters
Remove an existing body class by un-setting the key from the
$classes
array.