Related post by specific ID
-
I wanna display the related posts of an specific id (different of the actual post). This is my code for displaying the realtions of the actual post. How I change it? Thanks
$connected = new WP_Query( array( 'connected_type' => 'obra_to_exposicion', 'connected_items' => $id, 'nopaging' => true ) ); if ( $connected->have_posts() ) : while ( $connected->have_posts() ) : $connected->the_post(); ?><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br /><?php endwhile; <br /> <?php wp_reset_postdata(); endif; endwhile; ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Related post by specific ID’ is closed to new replies.