Created
February 22, 2020 18:44
-
-
Save NatalieMac/7492960b55f6df1bc09060936ede2cbd to your computer and use it in GitHub Desktop.
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
<?php | |
$args = array( | |
'post_type' => 'patient-education', | |
'posts_per_page' => 4, | |
'post_parent' => $post->ID, | |
'orderby' => 'title', | |
'order' => 'ASC', | |
); | |
$related = new WP_Query( $args ); | |
if ( $related->have_posts() ) : ?> | |
<h2>Related articles</h2> | |
<?php while ( $related->have_posts() ) : $related->the_post(); ?> | |
<div id="parent-<?php the_ID(); ?>" class="parent-page"> | |
<h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> | |
<p><?php the_excerpt(); ?></p> | |
</div> | |
<?php endwhile; ?> | |
<?php endif; wp_reset_postdata(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment