Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wp-seopress/df83069973daf98cbddcab03bf060bb0 to your computer and use it in GitHub Desktop.

Select an option

Save wp-seopress/df83069973daf98cbddcab03bf060bb0 to your computer and use it in GitHub Desktop.
Filter the post types used to generate the Markdown version
add_filter( 'seopress_agent_ready_markdown_post_types', 'sp_agent_ready_markdown_post_types', 10, 1 );
function sp_agent_ready_markdown_post_types( $types ) {
$types[] = 'your_cpt_key';
$types[] = 'your_cpt_key_2';
return $types;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment