Advertisement
janter13

Contoh makenya

Feb 17th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.23 KB | None | 0 0
  1. <?php
  2. //nampilinnya gini, misal ya, tmlnya sesuaikan aja..
  3. //................
  4. $thumb = get_the_post_thumbnail($id); // ini ane lupa, kalo output ga keluar hilangin aja
  5. /*
  6. <div class="imganime"><?php echo $thumb; ?></div>
  7. jadi
  8. <div class="imganime"><?php get_the_post_thumbnail($id); ?></div>
  9. */
  10. ?>
  11. <div class="data">
  12. <div class="imganime"><?php echo $thumb; ?></div>
  13. <div class="infonim"><b>Judul</b> : <?php the_title(); ?></div>
  14. <div class="infonim"><?php echo get_the_term_list( $id, 'type', '<p><b>Type </b>: ', '</p>' ); ?></div>
  15. <div class="infonim"><?php echo get_the_term_list( $id, 'episodes', '<p><b>Episodes </b>: ', '</p>' ); ?></div>
  16. <div class="infonim"><?php echo get_the_term_list( $id, 'status', '<p><b>Status </b>: ', '</p>' ); ?></div>
  17. <div class="infonim"><?php echo get_the_term_list( $id, 'seasons', '<p><b>Premiered </b>: ', ', ', '</p>' ); ?></div>
  18. <div class="infonim"><?php echo get_the_term_list( $id, 'genre', '<p><b>Genre </b>: ', ', ', '</p>' ); ?></div>
  19. <div class="infonim"><?php echo get_the_term_list( $id, 'duration', '<p><b>Durasi </b>: ', '</p>' ); ?></div>
  20. <div class="infonim"><?php echo get_the_term_list( $id, 'rating', '<p><b>Rating </b>: ', ', ', '</p>' ); ?></div>
  21. </div>
  22. <p><?php echo $isi;</p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement