Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Created February 22, 2016 18:32
Show Gist options
  • Select an option

  • Save pablocattaneo/62c2f8dc0472239a9233 to your computer and use it in GitHub Desktop.

Select an option

Save pablocattaneo/62c2f8dc0472239a9233 to your computer and use it in GitHub Desktop.
Agregar una custom class al body en Wordpress Add custom class to the body in Wordpress
<?php
$id_cat_notas_la_plaza = get_category_by_slug( 'notas-la-plaza-de-tu-mascotas' );
if ( in_category( $id_cat_notas_la_plaza )){
body_class('single-notas-la-plaza-de-tu-mascotas');
}else{
body_class();
}
?>
<body <?php get_template_part('file_name_where_the_last_code_was_wrote'); ?> >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment