Add extra body class only to first page of archive, tag, cat
-
Hello,
I need to insert an additional body class to only the first page of a tag page, category page, and page template page.Any way on how I can accomplish this?
I tried this, but adds boddy classes to all pages, which is not what i need.
add_filter( 'body_class', function( $classes ) { return array_merge( $classes, array( 'class-name' ) ); } );
source : https://developer.www.ads-software.com/reference/functions/body_class/
Thanks,
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Add extra body class only to first page of archive, tag, cat’ is closed to new replies.