How to get links to the last N posts in a specific category?
First, there is no parameter named cat in get_posts. Use category instead to input comma separated category IDs or category_name to directly inserting category name. Second, in your code you have commented out the title of the post. Try this code. <?php $cat_id = get_cat_ID(‘category1’); $posts = get_posts( “category=$cat_id&posts_per_page=3” ); if ($posts) { foreach ($posts … Read more