Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Add Custom Body Class (See related posts)

// description of your code here

// Add my-custom-class to body tag

function custom_body_class($classes) {
	$classes[] = 'my-custom-class';
	return $classes;
}
add_filter('thesis_body_classes', 'custom_body_class');

// To single pages only

function custom_body_class($classes) {
 if (is_single()) {
	$classes[] = 'my-custom-class';
	return $classes;
 }
}
add_filter('thesis_body_classes', 'custom_body_class');

You need to create an account or log in to post comments to this site.


Click here to browse all 7718 code snippets

Related Posts