<?php
-$args = array (
-
- 'cat' => array(1),
- 'posts_per_page' => -1, //showposts is deprecated
- 'orderby' => 'date' //You can specify more filters to get the data
-);
-
?>
<?php
-$category = get_term_by('slug', 'members-only', 'category');
-$args = array( 'posts_per_page' => '5', 'post_status' => 'publish', 'category_name' => 'members-only' );
+$args = array( 'posts_per_page' => '5', 'post_status' => 'publish', 'post_type' => 'member_post' );
$lastposts = get_posts( $args );
if ($lastposts) { ?>
</div>
<?php endforeach; ?>
</div>
+ <a href="<?php echo get_home_url(null, "/?post_type=member_post"); ?>" style='text-decoration: underline'>Click here to see more True North News</a>
</div>
+
<?php } ?>