Title: Don&#8217;t Exclude Current Post?
Last modified: September 20, 2021

---

# Don’t Exclude Current Post?

 *  [juniojeff](https://wordpress.org/support/users/juniojeff/)
 * (@juniojeff)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/dont-exclude-current-post/)
 * Hey I was wondering if there was a way NOT to exclude the current blog post from
   the list output.
 * For example:
    -On Post: Blog Title A -CRP Available Outputs: Blog Title A, Blog
   Title B, Blog Title C -Limit=”3″ -Current CRP Output: Blog Title B, Blog Title
   C -Wanted CRP Output: Blog Title A, Blog Title B, Blog Title C

Viewing 1 replies (of 1 total)

 *  Plugin Author [Ajay](https://wordpress.org/support/users/ajay/)
 * (@ajay)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/dont-exclude-current-post/#post-14910208)
 * Only way I can think of, which might work is trying something like this (untested)
 *     ```
       functions crp_include_source_post( $args ) {
       global $post;
   
       $args['include_post_ids'] = $post->ID;
   
       return $args;
   
       }
       add_filter('crp_query_args','crp_include_source_post');
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Don’t Exclude Current Post?’ is closed to new replies.

 * ![](https://ps.w.org/contextual-related-posts/assets/icon-256x256.png?rev=2985705)
 * [Contextual Related Posts](https://wordpress.org/plugins/contextual-related-posts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contextual-related-posts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contextual-related-posts/)
 * [Active Topics](https://wordpress.org/support/plugin/contextual-related-posts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contextual-related-posts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contextual-related-posts/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Ajay](https://wordpress.org/support/users/ajay/)
 * Last activity: [4 years, 8 months ago](https://wordpress.org/support/topic/dont-exclude-current-post/#post-14910208)
 * Status: not resolved