insuperblog
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to re-arrange the categories in the nav bar?Now the wordpress still inability to re-arrange the categories in realtime in the dashboard.
It can arrange by; ID, name, slug, count, term_group
Example by the help of my Eos themes. These themes has the Options to let you choose how you want to arrange its categories. STILL! No custom re-arrangement.WordPress cannot let you simply arrange it Up a Level by clicking a simple icon in dashboard. Joomla CMS can do this, but not in WordPress (yet).
I got a suggestions, but I’m not sure it works okay for u or not;
(Option 1)
– Plan ahead what kind of categories going to create in your blog.
– Create the categories 1 by 1 in sequence by ur requirements.
– Choose Sort by ID(Option 2)
– Dig into MySQL Database for ur wordpress, find the existing categories ID & change these ID according by ur requirements.
– Choose Sort by ID
For options 2, I’m sure sure it will affects your other links that linking to that categories or not. If yes, u need to change all the Links to the new categories IDs.If someone know how to do a more easily methods than this. Please post up. Thanks.
setup.insuperblog.com
Forum: Fixing WordPress
In reply to: Re-Arrange Categories Sort Items in MenuMay I know where can I set a “Slug” for a categories I created ?
I can’t find it, I only able to edit the slug in “Posts” only, not in Categories.
Pls help. Thanks.Forum: Fixing WordPress
In reply to: How to re-arrange the categories in the nav bar?iridiax,
I want keep the Home Page in menu bar.
<li><a href="<?php echo get_option('home'); ?>">Home2</a></li>
The preceeding code is I tried to copy & paste into another line below a php & see whether it works or not. Let say I got a Categories named “RELATED WEBSITES NEWS“, how do I modified the above code to point into this Categories named “RELATED WEBSITES NEWS” ?If really can point into this Categories, does that mean whenever I create a new Categories, I also need to come back to this header.php file to do editing ?
Forum: Fixing WordPress
In reply to: How to re-arrange the categories in the nav bar?Update:
Just tried the above header.php inside. I add another line below the HOME button
<li><a href="<?php echo get_option('home'); ?>">Home2</a></li>
so, if my categories name is “RELATED WEBSITES NEWS”, what’s suppose to replace the get_option(‘home’); ?Forum: Fixing WordPress
In reply to: How to re-arrange the categories in the nav bar?I also want to know this.
My header.php has this<div class="HeaderMenu" id="HeaderMenu"> <ul> <li><a href="<?php echo get_option('home'); ?>">Home</a></li> <?php if ($aOptions['menu_dropdown']) wp_list_categories('sort_column=name&title_li=&depth=3'); else wp_list_categories('sort_column=name&title_li=&depth=1'); ?> </ul> </div>
How to re-order them ? Must I create a categories first then only can reorder them ?