Você está procurando uma maneira de adicionar uma classe de corpo personalizada para páginas específicas? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para adicionar uma classe de corpo personalizada para páginas específicas no WordPress.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:
add_filter( 'body_class', 'my_neat_body_class'); function my_neat_body_class( $classes ) { if ( is_page(7) || is_category(5) || is_tag('neat') ) $classes[] = 'neat-stuff'; return $classes; }
Adicione este trecho de código ao arquivo header.php do seu tema do WordPress para substituir a tag HTML body padrão.
<body <?php body_class(); ?>>
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como adicionar corretamente trechos de código no WordPress, para não danificar seu site acidentalmente.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 27 melhores temas de negócios do WordPress e 7 melhores plugins GDPR do WordPress.
Is something similar possible but for a #id? I don’t want class .id
You could still use the .page-id class: https://developer.wordpress.org/reference/functions/body_class/
That said, for actually ids, you could add an id to the template file itself and use conditionals to control when it displays.
great! really helped me out.
where can i add class once above steps are done?
change the class in the code ‘neat-stuff’ to whatever you would like. You could even add
multiple classes if need be.
i want different id / class for each page… how do i assign it to specific page?
This snippet is not what you need, it will only add a single class to
“is_page(7) || is_category(5) || is_tag(‘neat’)”
A page with the ID of 7 or the category of 5 or a page that has the tag neat. I think what would better fit your needs is the following.
http://wpsnipp.com/index.php/functions-php/add-parent-page-slug-to-body_class/
This will add the page slug as the class for the page with a prefix of parent-{page_slug}. Other than adding this snippet to the functions.php nothing more needs to be done. Also take a look at this search result for more snippets related to the body_class http://wpsnipp.com/?s=body_class
I’m sure you can find a few that are useful.
thanks!
Works flawlessly for me, nice job!
Thanks a lot for this, really appreciated!
Thanks for this, I wanted a shorter body class name for a custom page template, using is_page_template (‘template-name.php’) and this worked perfect.
you this be combined with the other body class snippet so if the pages are not specified they default to have their own page as the class?
Should be able to just do
if ( is_page(7) || is_category(5) || is_tag(‘neat’) ){
$classes[] = ‘neat-stuff’; }else{
$classes[] = ‘other-class’;
}
Is there anything you need to do after you add the class? I’m not seeing any way to add a custom class for a page…
Hi Trevor,
Yes you will need to add the body_class(); function within the body tag I updated the snippet to avoid confusion.
Very handy. Can something simular be done using page parent?
Sure you could do something like this, however if your pages only have a single parent the body_class will already add “page-parent” class to the body. This is only a problem if you have many child pages as each sub page may also be a parent page. What is it that you are trying to do?
Now that’s a very neat snippet for custom page layouts – awesome!
Cool glad you like it!