Moo_FolderCopy
$plugin = new WP_Query( array( 'connected_type' => 'functions_to_posts', 'connected_items' => get_queried_object(), 'nopaging' => true, ) ); if ( $plugin->have_posts() ) { while ( $plugin->have_posts() ) : $plugin->the_post(); $parent = $post; break; endwhile; } wp_reset_postdata(); echo '
Back to '.$parent->post_title.'
'; echo 'Back to '.$parent->post_title.' Functions
'; ?>