I want to create a custom category page, only for the first page, displaying an article, related posts, latest posts. How can I do that?

2 Answers
2

I don´t think you can do this within the template overwrite structure of wordpress but you can include a custom template based on the pagination number.

if(get_query_var('paged') == 0){
 echo "Include your custom theme here";
}else{
 echo "standard";
}

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *