How to Link to Most Recent Custom Post of Same Term
I ended up using wp_query instead because I couldn’t make wp_get_recent_posts work no matter what I tried. For anyone who needs this functionality in the future, here’s the code I used: // Get the ID of the current posts’s term $terms = get_the_terms( $post->ID, ‘comic-series’ ); // Only get the parent term and ignore child … Read more