Advertisement
janter13

penjelasan

Apr 17th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.09 KB | None | 0 0
  1. <?php if(is_front_page() && is_home() || is_404()){ // jika halaman front page juga adalah homepage atau 404 not found
  2.         echo '<div class="container meow-homepage main-content-area">';
  3.              }else{ // else
  4.         echo '<div class="container main-content-area">';
  5.             }
  6.     $layout_class = get_layout_class();
  7.     if(!is_page('genre') || !is_page('studios')){ // jika bukan halaman genre atau halaman studio ( taxonomy )
  8.         ?>
  9.         <div class="row <?php echo $layout_class; ?>">
  10.         <?php }else{ // else , halaman selain genre / studio, ex anime-list-baru
  11.         ?>
  12.             <div class="rowrow no-sidebar">
  13.         <?php }
  14.         if(is_front_page() && is_home() || is_404() || is_tag(array('movie', 'ongoing', 'completed')) || is_tax('genre')){ //jika halaman front page juga adalah homepage atau 404 not found atau halaman tag movie, ongoing, dll atau halaman taxonomy genre . ini kalo ga salah buat ngefix yg gambar ga mau rata 3x3, yg ada bolongnya 1 itu
  15.         ?>
  16.             <div class="main-content-inner  col-sm-12">
  17.         <?php }else{ ?>
  18.             <div class="main-content-inner <?php echo sparkling_main_content_bootstrap_classes(); ?>">
  19.         <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement