Definition:
function sticky_class( $post_id = null ) {}
Display "sticky" CSS class, if a post is sticky.
Parameters
- int $post_id: An optional post ID.
Source code
function sticky_class( $post_id = null ) { if ( !is_sticky($post_id) ) return; echo " sticky"; }
2913
No comments yet... Be the first to leave a reply!