n25260
Member
Posted 4 months ago #
I am attempting to design a SEM business website based on the Innovate Theme. This is how the site template looks: http://www.sembusiness.net but it is missing the category links just above the slideshow.
This is how it looks by default with the category tabs:
http://newwpthemes.com/demo/Innovate/
I cannot figure out how to turn those category tab links back on, and would appreciate any help.
agothtale
Member
Posted 4 months ago #
This might not be the "cleanest" way to add this links, but I add them manually in index.php with
<div id="topnav">
for a category
<a href="?cat=number"> category name </a> ~
or for a page
<a href="?page_id=number"> page title </a> ~
</div>
There must be some other way to add them automatically by displaying categories throught php in the loop, but can't help much on that
hope that helps
n25260
Member
Posted 4 months ago #
I will give that a try. Thanks!