Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Webbjocke

    (@webbjocke)

    Hi apparently bbpress are excluding the forum links from the normal wordpress blog loop, even when “post type” is set to “any” which really should include all custom post types.

    But I found if the post types are set specifically it works, so for this you’ll have to make a little change to one of this plugins php files.

    In the file simpleWpBuilder.php at line 90 it says $q = new WP_Query(blabla). In there change ‘post_type’=>’any’ to ‘post_type’=>array(‘post’,’page’,’topic’,’forum’) and the links should show up.

    Thread Starter ganesh641

    (@ganesh641)

    Thanks you. Now its working fine…. Any hook function available to archive this, without changing the core file…

    Plugin Author Webbjocke

    (@webbjocke)

    Nope there isn’t. I get the solution isn’t probably such a good idea in the long term since you would have to modify the core every time there’s a new update.

    I don’t plan on releasing new updates very often but anyway, it’s weird they don’t let the links be included when post type is set to “any”. To make this possible (create a hook function) I would have to develop the plugin specifically according to bbpress, which is just crap.

    Sorry but what I see is three options: Stick with the modifying plan, get a new forum plugin or get a new sitemap plugin. Good luck anyway you choose ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to generate a bbpress forum links’ is closed to new replies.