Support » Plugin: Posts 2 Posts » 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; ?>

    https://wordpress.org/plugins/posts-to-posts/

Viewing 1 replies (of 1 total)
  • Thread Starter rroncero

    (@rroncero)

    The solution, getting the id from url parameter:

    $related = new WP_Query( array(
      'connected_type' => ''YOUR_CONNECTION_TYPE'',
      'connected_items' => $_GET['id'],
      'nopaging' => true,
    ) );
    
    while ( $related->have_posts() ) : $related->the_post();
    
    // display the content
    
    endwhile;
Viewing 1 replies (of 1 total)
  • The topic ‘Related post by specific ID’ is closed to new replies.