Category List Tabs

This section applies to the “Category List Tabs” option of the Home Layout part of the Options Theme Settings in your WordPress dashboard.

This file displays your latest posts in certain categories. You define these categories in Options Theme Settings by the name of your category (category name must be the same as category slug).

This file shows your latest article, followed by a list of previous articles to the side.

File name: /includes/category-list-tabs.php
Custom fields: None

You can change the number of posts shown by editing category-list-tabs.php. The first post is the article excerpt. The following posts are in the list.

// Number of posts you want to display (change "$posts_wanted=6" to the number of posts you want shown)
	// First post is an excerpt, following are in a list
	$posts_wanted = 6;

Comments are closed.