Add a Custom Class to the Body Element

Add a Custom Class to the Body Element

If you would like to add a custom class to the body element, use the PHP snippet below:

add_filter( 'body_class','tu_add_body_class' );
function tu_add_body_class( $classes ) {
$classes[] = 'my-custom-body-class';
return $classes;
}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注