-
-
Save scribu/1895302 to your computer and use it in GitHub Desktop.
poor attempt at php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find related posts | |
$related = p2p_type( 'brand_to_product' )->get_related( get_queried_object_id() ); | |
// Display related posts | |
if ( $related->have_posts() ) : | |
?> | |
<?php while ( $related->have_posts() ) : $related->the_post(); ?> | |
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><br /> | |
<?php endwhile; ?> | |
<?php | |
// Prevent weirdness | |
wp_reset_postdata(); | |
endif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment