Every time you add a new theme to your WordPress blog and you find that this theme show all your categories in a menu. The idea of excluding a category from the menu come directly to your mind.

Today I propose to change the categories menu you have in your home page to suit your needs.

exclude-a-category-from-your-wordpress-index

Initially if you do not have this menu, and you still have the classic menu which include: Home, About, etc. …

all you have to do is using this small code in the place you think you want to show the menu in :

[sourcecode language=”php”]
<?php

wp_list_categories(‘orderby=name&title_li=0’)

?>[/sourcecode]

Now if you want to exclude a specific category add this ” &exclude=10” to your code to have something like that :

[sourcecode language=”php”]
<?php

wp_list_categories(‘orderby=name&title_li=0&exclude=10’)

?>[/sourcecode]

Where 10 is the category ID

If by any chance you want to exclude more than one category, you simply just add a comma after the number of the first category then enter the following number.

[sourcecode language=”php”]
<?php

wp_list_categories(‘orderby=name&title_li=0&exclude=10,33,454’)

?>[/sourcecode]

You May Also Like

Why WORDPRESS is better?

You might have started your own online business. Well, to make it work, you need to own a site. However, if you do not know much about programming languages, then it would benefit you a lot to make use of the simple and easy ones. In this matter, it would be a very good idea […]

What’s New In WordPress 4.3

  WordPress is the most widely used content management system in the world. It is an excellent platform for beginners to launch their blog without needing expert knowledge on HTML. WordPress is also useful for sole proprietors who want their business to have an online presence but at the same time do not want to […]

5 WordPress Plugins To better monetize your blog

When we talk about Monetizing a Blog, many people think about Google Adsense as the only solution, but this is not true. So here is a list of 5 plugins that will help you change this idea. Adserver Adserver is an ad server for wordpress. You can set up your campaigns with banners of different […]

Why WordPress is the ultimate option for Non-techy business owners

In this digital age, every business needs an online presence. This can become an issue for business owners especially who have a limited budget and cannot afford to hire a digital agency or a web developer. Small business owners take up on this task on their own even if they do not possess the required […]