Advertisement
rexcoder

Sticky Post

Jan 5th, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. //For Sticky post
  2. // Display a thumb tack in the top right hand corner if this post is sticky
  3. if (is_sticky()) {
  4.     echo '<i class="fa fa-thumb-tack sticky-post"></i>';
  5. }
  6.  
  7.  
  8. //Style
  9. <style>
  10. .sticky-post {
  11.     position: absolute;
  12.     top: 1rem;
  13.     right: 3rem;
  14. }
  15. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement