• Resolved sukrant

    (@sukrant)


    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/ https://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

    (@rkcorp)

    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

    (@sukrant)

    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 .
    https://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

    (@rkcorp)

    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.