Connected & Related
-
How do I show posts of connected & related? I tried this code but it doesn’t work
<?php
// Find connected pages
$connected = new WP_Query( array(
‘connected_type’ => ‘posts_to_pages’,
‘connected_items’ => array( ‘get_connected’, ‘get_related’ ) get_queried_object(),
‘nopaging’ => true,
) );// Display connected pages
if ( $connected->have_posts() ) :
?>
<h3>Related pages:</h3>-
<?php while ( $connected->have_posts() ) : $connected->the_post(); ?>
- “><?php the_title(); ?>
<?php endwhile; ?>
<?php
// Prevent weirdness
wp_reset_postdata();endif;
?>Can anyone help me fix the code?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Connected & Related’ is closed to new replies.