Guest User

Untitled

a guest
Dec 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <?php
  2. $current_user = wp_get_current_user();
  3. $conteudo = $current_user->conteudou;
  4.  
  5. $args = array (
  6. 'post_type' => 'estatisticas',
  7. 'posts_per_page' => '10',
  8. 'meta_query' => array(
  9. array( 'key' => $conteudo,
  10. 'value' => '1',
  11. 'compare' => '='),
  12. )
  13. );
  14. $the_query = new WP_Query( $args );
  15. ?>
  16. <?php if ( $the_query->have_posts() ) : ?>
  17. <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
  18. <tr>
  19. <td><?php the_title();?></td>
  20. <td>
  21. <?php the_field('categoriae');?>
  22. </td>
  23. <td><?php the_time('d/m/Y')?></td>
  24. <td><a href="<?php the_field('arquivo');?>" class="btndown">Download</a></td>
  25. </tr>
  26. <?php endwhile; ?>
  27. <?php wp_reset_postdata(); ?>
  28. <?php else : ?>
  29. <p><?php esc_html_e( 'Não existe posts nesse momento' ); ?></p>
  30. <?php endif; ?>
Add Comment
Please, Sign In to add comment