php: how to Add the Page Slug to Body Class in WordPress

PHOTO EMBED

Mon Dec 11 2023 13:00:47 GMT+0000 (Coordinated Universal Time)

Saved by @mubashir_aziz


function add_slug_body_class( $classes ) {
global $post;
if ( isset( $post ) ) {
$classes[] = $post->post_type . '-' . $post->post_name;
}
return $classes;
}
add_filter( 'body_class', 'add_slug_body_class' );
content_copyCOPY

https://www.wpbeginner.com/wp-themes/how-to-add-page-slug-in-body-class-of-your-wordpress-themes/