Last active
June 1, 2018 02:18
-
-
Save matheusgimenez/fe5910fee9bb36988b96812dc27eef5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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