I’ve been working on a very simple plugin lately – more of which I’ll talk about next month – that’s serving as a demo for a larger project that I’ve been working on.
In short, the plugin gives editors the ability to exclude posts from the main index feed of the WordPress blog. This means that the blog post is still accessible via direct URL, but it won’t show up in the main feed of the site.
This is achieved by the following process:
- Introduce a meta box into the post editor dashboard
- Add a check box that gives the user the ability to check whether or not to exclude the post
- Use a hook to exclude those posts form the dashboard
It sounds easy enough, doesn’t it?

