Title: Post Schema
Last modified: September 1, 2016

---

# Post Schema

 *  [Sii Cockerill](https://wordpress.org/support/users/designtwelve/)
 * (@designtwelve)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/post-schema/)
 * I have a custom post type that behaves like the default WordPress Posts, yet 
   the AMP JSON-LD schema post type is being set to WebPage, not Article.
 * Please could you build in a way of being able to control the schema post type
   on a per CPT basis?
 * [https://wordpress.org/plugins/glue-for-yoast-seo-amp/](https://wordpress.org/plugins/glue-for-yoast-seo-amp/)

Viewing 1 replies (of 1 total)

 *  [blacksmithmc](https://wordpress.org/support/users/blacksmithmc/)
 * (@blacksmithmc)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/post-schema/#post-8493832)
 * Hi Sii.
 * Any progress here, I have the same issue and have hacked the plug-in as below
   in class-frontend.php:
 *     ```
       private function get_post_schema_type( $post ) {
       			if ( 'post' === $post->post_type ) {
       				$type = 'Article';
       			}
       			else {
       				$type = 'Article';
       			}
   
       			/**
       			 * Filter: 'yoastseo_amp_schema_type' - Allow changing the Schema.org type for the post
       			 *
       			 * @api string $type The Schema.org type for the $post
       			 *
       			 * @param WP_Post $post
       			 */
       			$type = apply_filters( 'yoastseo_amp_schema_type', $type, $post );
   
       			return $type;
       		}
       ```
   
 * Might there be some simple way to tap into yoastseo_amp_schema_type?
 * Great plug-in and great work.
    Thanks, Dan

Viewing 1 replies (of 1 total)

The topic ‘Post Schema’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/glue-for-yoast-seo-amp_ddbb3a.svg)
 * [Glue for Yoast SEO & AMP](https://wordpress.org/plugins/glue-for-yoast-seo-amp/)
 * [Support Threads](https://wordpress.org/support/plugin/glue-for-yoast-seo-amp/)
 * [Active Topics](https://wordpress.org/support/plugin/glue-for-yoast-seo-amp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/glue-for-yoast-seo-amp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/glue-for-yoast-seo-amp/reviews/)

## Tags

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

 * 1 reply
 * 2 participants
 * Last reply from: [blacksmithmc](https://wordpress.org/support/users/blacksmithmc/)
 * Last activity: [9 years, 6 months ago](https://wordpress.org/support/topic/post-schema/#post-8493832)
 * Status: not resolved