Title: Plugin dont work in custom post types
Last modified: August 16, 2018

---

# Plugin dont work in custom post types

 *  Resolved [hmahdavi921](https://wordpress.org/support/users/hmahdavi921/)
 * (@hmahdavi921)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/plugin-dont-work-in-custom-post-types/)
 * I install this plugin and work currently but does not work in custom post types.
   
   What is problem?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Joshua David Nelson](https://wordpress.org/support/users/joshuadnelson/)
 * (@joshuadnelson)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/plugin-dont-work-in-custom-post-types/#post-10607974)
 * Hey there,
 * Apologies on my delayed response, I have been out of town.
 * Custom post types don’t work out-of-the-gate. You’ll need to add the following
   to your functions.php file or a custom plugin file:
 *     ```
       function stf_add_cpt_support( $post_types ) {
           $post_types[] = 'project';
   
           return $post_types;
       }
       add_filter( 'scripts_to_footer_post_types', 'stf_add_cpt_support' );
       ```
   
 * Let me know if that doesn’t work or if you have any other questions!
 * Thanks,
    Joshua
 *  Thread Starter [hmahdavi921](https://wordpress.org/support/users/hmahdavi921/)
 * (@hmahdavi921)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/plugin-dont-work-in-custom-post-types/#post-10608962)
 * OK. This code worked correctly.
    Thanks a lot.
 *  Plugin Author [Joshua David Nelson](https://wordpress.org/support/users/joshuadnelson/)
 * (@joshuadnelson)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/plugin-dont-work-in-custom-post-types/#post-10610583)
 * Glad this worked for you, let me know if you have any other questions or issues!
 * Thanks,
    Joshua

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Plugin dont work in custom post types’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/scripts-to-footerphp_fcfefd.svg)
 * [Scripts To Footer](https://wordpress.org/plugins/scripts-to-footerphp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/scripts-to-footerphp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/scripts-to-footerphp/)
 * [Active Topics](https://wordpress.org/support/plugin/scripts-to-footerphp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/scripts-to-footerphp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/scripts-to-footerphp/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Joshua David Nelson](https://wordpress.org/support/users/joshuadnelson/)
 * Last activity: [7 years, 9 months ago](https://wordpress.org/support/topic/plugin-dont-work-in-custom-post-types/#post-10610583)
 * Status: resolved