Skip to content

Instantly share code, notes, and snippets.

@rodrigophpweb
Created October 14, 2019 15:23
Show Gist options
  • Save rodrigophpweb/add13dc2a83e9faebd0256b644a0698d to your computer and use it in GitHub Desktop.
Save rodrigophpweb/add13dc2a83e9faebd0256b644a0698d to your computer and use it in GitHub Desktop.
WP_Query
<?php
$args = array(
'post_type' => array( 'team' ),
'posts_per_page' => '-1',
'ignore_sticky_posts' => false,
);
$equipe = new WP_Query( $args );
if ( $equipe->have_posts()) :
while ( $equipe->have_posts()) : $equipe->the_post(); ?>
<div>
<a data-fancybox="team" data-type="ajax" data-src="members/<?php the_slug(); ?>" href="javascript:;">
<div class="member">
<?php the_post_thumbnail( 'team-thumbnail' ); ?>
<?php the_title( '<h3 class="member-name">', '</h3>' ); ?>
</div>
</a>
</div>
<?php endwhile;?>
<?php else :?>
<p>Nenhum Membro Cadastrado</p>
<?php endif; wp_reset_postdata();?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment