• Resolved mike62

    (@mike62)


    I would love to be able to include custom post types in my archive. I see on line 218 it is selecting just the “post” post_type, would it be possible to include an array in there? My php is limited, so I don’t know what the syntax for that would be.

    I’d also love to be able to exclude a category from the Archives page…

    Any help would be greatly appreciated. Thanks!!

    http://wordpress.org/extend/plugins/clean-archives-reloaded/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Alex Mills

    (@viper007bond)

    This plugin really needs a rewrite, but meanwhile:

    ...  AND post_type IN ( 'post', 'a_custom_post_type', 'another_post_type' ) AND ...

    And for reference, that’s MySQL syntax rather than PHP.

    Thread Starter mike62

    (@mike62)

    Cool, thanks! That works beautifully. Is there also a way to exclude a category (or two)?

    Plugin Contributor Alex Mills

    (@viper007bond)

    Is there also a way to exclude a category (or two)?

    Yes, but that gets a lot more complicated as you need to JOIN in another database table.

    Thread Starter mike62

    (@mike62)

    Cool thanks for letting me know. I can work around that easy enough, but being able to include the custom post types is super helpful. Makes for a much more complete archive. Thanks for your time, and for the plugin. 🙂

    Plugin Contributor Alex Mills

    (@viper007bond)

    No problem. 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Clean Archives Reloaded – Include custom post types?’ is closed to new replies.