Skip to content

Instantly share code, notes, and snippets.

@proweb
Last active December 16, 2018 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save proweb/24a99e5a22b8394d0bb898eef809edea to your computer and use it in GitHub Desktop.
Save proweb/24a99e5a22b8394d0bb898eef809edea to your computer and use it in GitHub Desktop.
Add class to post_class function wordpress (as last class)
<?php
add_filter( 'post_class', 'uikit_article_class' );
function my_article_class($classes) {
if (!is_admin()) {
$classes[] = 'my-class';
return $classes;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment