You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After investigating, it appears that the page slug is not yet being added to the body class. Working on the implementation, Wordpress provides a filter hook called "body_class" which returns the body tag classes for a page. By adding this filter hook to your website, the page slug can be added to the body tag classes as implemented in the branch feature/add-page-slug-to-body-classes
I'd like to advise against using the slug as a body class, especially if specific styles are being assigned to it. Slugs are volatile and can potentially change unexpectedly (say when the title changes).
WordPress adds a body class for page-id-## and postid-## where ## maps to the IDs. By default, custom post types do not get the same treatment, though I seem to remember working on something like that somewhere in responsive-framework or a plugin previously.
Automatically include the page / post title (as slug) in the body classes.
This will allow further customization on front-end for specific pages.
We need to first research to see if this is already happening, and if not implement a solution that will be non-destructive in every way.
The text was updated successfully, but these errors were encountered: