Title: Custom menus
Last modified: September 23, 2017

---

# Custom menus

 *  Resolved [sukrant](https://wordpress.org/support/users/sukrant/)
 * (@sukrant)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/custom-menus-15/)
 * Hello Team,
 * I have scenario, please let me know is it possible in wordpress mesocolumn theme
   or not. if yes then how. Would be great help
 * There is one website which has 100 post and 10 category.
 * 5 category’s posts (50 posts) displayed on Home tab (default page/ First page/
   [http://www.website.com](http://www.website.com)).
 * For all other 5 category/50 posts. five different tabs on website. these posts
   only displayed when we click on these tabs.
 * This way we have 6 different tabs on website.
    Home – displayed 50 posts 2 tab–
   10 posts 3 tab – 10 posts …so on…
 * Would it possible, pleas help..

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

 *  Theme Author [Richie KS](https://wordpress.org/support/users/rkcorp/)
 * (@rkcorp)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/custom-menus-15/#post-9529375)
 * when you say ‘tab’ do you mean the menu item?
    you should be able to add your
   own set of item, in your case the category into your own custom menu. and set
   in either primary or top menu location.
 *  Thread Starter [sukrant](https://wordpress.org/support/users/sukrant/)
 * (@sukrant)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/custom-menus-15/#post-9531012)
 * I used tab word because in wordpress menu and page can use in same way. That’s
   why i used tab . i mean with tab is like in current page we have
 * Showcase Themes Plugins Mobile Support Get Involved About Blog Hosting
 * i did some of things, with some videos help. not sure how can i hide some post
   from home tab and display them only on another tab. for example you can visit.
   
   [http://www.geekpills.com/](http://www.geekpills.com/) . Home and about is displayed(
   These are pages),which is defined in menu. I like to add another tab like Linux,
   Database, Motoring with them and their sub-tab. i Can do same , simply add pages
   and add them in same menu.But that not hide post related to that page from Home
   tab. I like to hide their post from Home tab. i could add links on another tab,
   but hide form home tab is must.
 *  Theme Author [Richie KS](https://wordpress.org/support/users/rkcorp/)
 * (@rkcorp)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/custom-menus-15/#post-9536781)
 * add this to functions.php or your own child theme functions.php to filter out
   post from category you do not want to show in homepage.
 *     ```
       function meso_custom_home_query() { if( is_home() ) {
       query_posts('cat=-3,-4'); //category ids
       }
       }
       add_action('bp_before_post_query','meso_custom_home_query');
       ```
   

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

The topic ‘Custom menus’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/mesocolumn/1.6.5.1/screenshot.
   png)
 * MesoColumn
 * [Support Threads](https://wordpress.org/support/theme/mesocolumn/)
 * [Active Topics](https://wordpress.org/support/theme/mesocolumn/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/mesocolumn/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/mesocolumn/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Richie KS](https://wordpress.org/support/users/rkcorp/)
 * Last activity: [8 years, 8 months ago](https://wordpress.org/support/topic/custom-menus-15/#post-9536781)
 * Status: resolved