Skip to content

Instantly share code, notes, and snippets.

@matheusgimenez
Last active June 1, 2018 02:18
Show Gist options
  • Save matheusgimenez/fe5910fee9bb36988b96812dc27eef5d to your computer and use it in GitHub Desktop.
Save matheusgimenez/fe5910fee9bb36988b96812dc27eef5d to your computer and use it in GitHub Desktop.
<?php
$args = array(
'post_type' => 'post',
's' => 'Expresso',
'post_status' => 'publish'
);
?>
<?php $the_query = new WP_Query( $args ); ?>
<?php $titles = array();?>
<?php if ($the_query->have_posts()): while ($the_query->have_posts()) : $the_query->the_post();?>
<?php if ( in_array( get_the_title(), $titles ) ) {
continue;
} ?>
<!--Exibir todos os posts com a palavra expresso sem repetição -->
<?php the_title();?>
<?php $titles[] = get_the_title();?>
<?php endwhile; else:?>
<?php endif;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment