[WordPress] Adding a Body Class Based on a Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter('body_class', 'acme_add_body_class'); | |
/** | |
* If the current page has a template, apply it's name to the list of classes. This is | |
* necessary if there are multiple pages with the same template and you want to apply the | |
* name of the template to the class of the body. | |
* | |
* @param array $classes The current array of attributes to be applied to the | |
*/ | |
function acme_add_body_class($classes) | |
{ | |
if (!empty(get_post_meta(get_the_ID(), '_wp_page_template', true))) { | |
// Remove the `template-` prefix and get the name of the template without the file extension. | |
$templateName = basename(get_page_template_slug(get_the_ID())); | |
$templateName = str_ireplace('template-', '', basename(get_page_template_slug(get_the_ID()), '.php')); | |
$classes[] = $templateName; | |
} | |
return array_filter($classes); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment