Skip to main content
Login Join
Snippet · PHP

Add the Page Slug to Body Class

Shared by Ankit Panchal · April 30, 2026

15 views
3 upvotes
Back to Snippets

Add the page slug to the body class for better styling.

function wpcode_snippet_add_slug_body_class( $classes ) {
	global $post;
	if ( isset( $post ) ) {
		$classes[] = $post->post_type . '-' . $post->post_name;
	}

	return $classes;
}

add_filter( 'body_class', 'wpcode_snippet_add_slug_body_class' );