Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter musthaveit

    (@musthaveit)

    I’ve also tried re-saving permalinks.

    Placin the following

    <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=1'); ?>

    in various positions in the sidebar.php still says no categories also.

    Anyone have any ideas?

    Thread Starter musthaveit

    (@musthaveit)

    Hi esmi,

    Yes I have. The problem is, I have taken over the blog and therefore unable to confirm if categories, tags and archives links have ever worked.

    But I have checked the source code and it is exactly the same as in sidebar.php in the theme. I’ve also checked the list code for categories and this is the same as per WordPress docs. The command is still valid to list the categories as far as I know.

    I’ve resinstalled wordpress.

    <div id="first_container">
    
    			<ul id="first_container_nav">
    				<li><a href="#categories" title="Categories">Categories</a></li>
    				<li><a href="#tagcoud" title="Tag Cloud" class="selected">Tag Cloud</a></li>
    				<li><a href="#archives" title="Archives">Archives</a></li>
    			</ul>
    
    			<div id="categories">
    				<ul>
    					<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=1'); ?>
    				</ul>
    
    			</div>
    
    			<div id="tagcoud">
    				<p><?php wp_tag_cloud(); ?></p>
    			</div>
    
    			<div id="archives">
    				<ul>
    					<?php wp_get_archives('type=monthly'); ?>
    				</ul>
    			</div>
    
    		</div>

    Everything looks valid, but not working.

    Thread Starter musthaveit

    (@musthaveit)

    Actually no, it’s not resolved.

    Checked using IE and Firefox from PC and laptop on different networks.

    At the lower section of the main page click on Categories, Tag Cloud, Archive:

Viewing 3 replies - 1 through 3 (of 3 total)