Advertisement
pusatdata

Memunculkan ID, Judul, Tgl, Kategori, Tag, Link Edit

Sep 24th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. ID: <?php echo get_the_ID(); ?>
  2.  
  3. Judul: <?php the_title(); ?>
  4.  
  5. Tanggal: <?php echo get_the_date(); ?>
  6.  
  7. Kategori: <?php the_category(', '); ?>
  8.  
  9. Tag (bila tak ada tidak muncul):
  10. <?php if(get_the_tags()) {
  11. ?><div class="postmeta-secondary"><span class="meta_tags"><?php the_tags('', ', ', ''); ?></span></div><?php
  12. }
  13. ?>
  14.  
  15. Link Edit (login baru terlihat):
  16. <?php
  17. if(is_user_logged_in()) {
  18. ?> &nbsp; <span class="meta_edit"><?php edit_post_link(); ?></span><?php
  19. } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement