Skip to content

Instantly share code, notes, and snippets.

@danmaby
Created February 16, 2018 07:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danmaby/179f0449eb73ef308f103a94266a6e78 to your computer and use it in GitHub Desktop.
Save danmaby/179f0449eb73ef308f103a94266a6e78 to your computer and use it in GitHub Desktop.
Amazon Polly for WordPress - Custom Post Types
/**
* Amazon Polly "Events" CPT
**/
function my_amazon_polly_post_types( $post_types ) {
$post_types[] = 'events';
return $post_types;
}
add_filter( 'amazon_polly_post_types', 'my_amazon_polly_post_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment