Creating Multiple Single Posts for Different Categories
If each post only belongs to one category, and each category has different post template, just modify single.php, we can use the following code: if ( in_category(‘fruit’) ) { include ‘single-fruit.php’; } elseif ( in_category(‘vegetables’) ) { include ‘single-vegetables.php’; }… Read moreCreating Multiple Single Posts for Different Categories