Guest User

Untitled

a guest
Jul 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2.     //será para poder recuperar o ID do post, e manipular fora do loop
  3.     $tags = array();
  4. ?>
  5.  
  6. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  7. <?php
  8.         foreach(get_the_tags(get_the_ID()) as $tag) {
  9.                 $tags[] = $tag->slug ;
  10.       }
  11. ?>
  12.  
  13.    
  14. <?php endif; endwhile?>
Add Comment
Please, Sign In to add comment