Title: Plugin not working for custom post type
Last modified: January 19, 2017

---

# Plugin not working for custom post type

 *  [Nirmal Kumar](https://wordpress.org/support/users/onlinerockers/)
 * (@onlinerockers)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/plugin-not-working-for-custom-post-type/)
 * I just tried this plugin for custom post type and I found that this plugin is
   not working for custom post types.
 * How to make this plugin work for custom post type?

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

 *  [ablears](https://wordpress.org/support/users/ablears/)
 * (@ablears)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/plugin-not-working-for-custom-post-type/#post-8923872)
 * In wp-seo-structured-data-schema/lib/classes/KcSeoHelper.php, look at the kcSeoPostTypes()
   function (line 41 for me).
 * Replace
 *     ```
       $post_types = get_post_types(
       	array(
       		'_builtin' => true
       	)
       );
       ```
   
 * with
 *     ```
       $post_types = get_post_types(
       	/*array(
       		'_builtin' => true
       	)*/
       );
       ```
   
 * Basically this determines which post types the plugin will show on. By commenting
   out the array you prevent it from showing on internal WordPress post types only(
   page, post).
 *  [louisagung](https://wordpress.org/support/users/louisagung/)
 * (@louisagung)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/plugin-not-working-for-custom-post-type/#post-9208366)
 * It works! Thank you!

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

The topic ‘Plugin not working for custom post type’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-seo-structured-data-schema_7889a1.
   svg)
 * [WP SEO Structured Data Schema](https://wordpress.org/plugins/wp-seo-structured-data-schema/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-seo-structured-data-schema/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-seo-structured-data-schema/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-seo-structured-data-schema/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-seo-structured-data-schema/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-seo-structured-data-schema/reviews/)

## Tags

 * [CPTUI](https://wordpress.org/support/topic-tag/cptui/)

 * 2 replies
 * 3 participants
 * Last reply from: [louisagung](https://wordpress.org/support/users/louisagung/)
 * Last activity: [8 years, 11 months ago](https://wordpress.org/support/topic/plugin-not-working-for-custom-post-type/#post-9208366)
 * Status: not resolved