benbrehaut / wp-vanlig

Blank WordPress starter theme made for being customisable.
2 stars 1 forks source link

Adjust WP Sticky Post Class #6

Closed benbrehaut closed 7 years ago

benbrehaut commented 7 years ago
function sticky_posts( $classes ) {
    if ( in_array( 'sticky', $classes, true ) ) {
        $classes = array_diff($classes, array('sticky'));
        $classes[] = 'post--sticky';
    }
    return $classes;
}
add_filter('post_class','sticky_posts');