• Hi All

    I need to query a custom post by its tag?

    Does anyone know the wp query for this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    Do you mean display your custom post type?

    <?php $loop = new WP_Query( array( 'post_type' => 'custom_post_type', 'posts_per_page' => -1 ) ); ?>
    
    <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
    
    <?php the_title(); ?>
    
    <?php the_content(); ?>

    This will display all the posts for custom_post_type.

    Is this what you wanted?

    Thread Starter Wayn

    (@shnactor1)

    Thank you

    I want to display a custom post type and then a certain tag withinh that custom post

    Eg

    Custom post is staff

    Tag is cleaners

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom Post Query’ is closed to new replies.