Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <div class="col-md-3 col-sm-6 col-xs-12 portfolio_item mix
  2. <?php
  3. $tags = wp_get_post_tags($post-ID); // Получает метки текущего поста
  4. if ($tags){
  5. foreach($tags as $tag){
  6. echo ' '.$tag->name;
  7. }
  8. }
  9. ?>
  10. ">
  11.  
  12. <div class="col-md-3 col-sm-6 col-xs-12 portfolio_item mix
  13. <?php
  14. $tags = get_tags(); // Получает все метки сайта
  15. if ($tags){
  16. foreach($tags as $tag){
  17. echo ' '.$tag->name;
  18. }
  19. }
  20. ?>
  21. ">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement