Ashley Cameron Design

Ashley Cameron Design

Shop the Creative Design Market

Good afternoon

query_posts for Custom Post Types

SnippetsWordPress

About a 1 minute read

"Not until we are lost do we begin to understand ourselves."

Henry David Thoreau


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
        query_posts( array('post_type' => 'Snippets',
        'posts_per_page' => -1,
        'tax_query' => array(
            array(
                'taxonomy' => 'language',
                'field' => 'slug',
                'terms' => 'sql'
                )
            )
        )
    );
while ( have_posts() ) : the_post();
echo "<a href='". the_permalink() ."'>". the_title()."</a>";
the_terms( $post->ID, 'language', 'Tagged in: ', ', ', ' ' );
endwhile;