• The blog in question is http://nacken.com. For starters I would like to have the categories above the links. And then I would like to re-order the links/categories within other than by ID or alphabetical.

    My research has brought me to http://wiki.wordpress.org/?pagename=HowToOrderLinkCategories but I could not figure that out even though I tested around … maybe there is a website explaining this for dummies like me?

    Here on the support forum I found one post recommending / linking to a spacing hack … but the link brings me back to the front page.

    Is there any fairly simple way of doing that and maintaining it? If onece I start fiddling around in the index.php with that, I cannot add links using the WP interface anymore?

    Thanks P

Viewing 3 replies - 1 through 3 (of 3 total)
  • Cats above links:
    Look inside index.php and the menu div. Cut and paste there

    <li id="categories"><?php _e("Categories:"); ?>
    <ul>
    <?php wp_list_cats(); ?>
    </ul>
    </li>

    <?php get_links_list(); ?>

    The adding of spaces before names works fine, and you can chop away at index and the backend should be fine.

    Backup before changing files though.

    Thread Starter caipirina

    (@caipirina)

    thanks .. that kinda worked http://nacken.com/xindex.php

    but it is somewhat messing with the archive links on the right side .. hmmm …

    if i just wanted to get rid of the Links … i just delete the
    <?php get_links_list(); ?> ??? right ? will test that

    Thread Starter caipirina

    (@caipirina)

    That worked http://nacken.com/nolinkindex.php

    but what to delete to get rid of other and meta ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to reshuffle Links and Categories?’ is closed to new replies.