Advertisement
salmancreation

page condition - wordpress

Aug 6th, 2020 (edited)
2,324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php if ( is_front_page() ) {
  2.         $bodyClass = 'font-poppins';
  3.     } elseif ( is_archive() || is_author() || is_category() || is_single() || is_tag() ) {
  4.         $bodyClass = 'font-poppins';
  5.     } elseif ( is_home() ) {
  6.          $bodyClass = 'font-poppins';
  7.     } else {
  8.         $bodyClass = '';
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement