Skip to content

Instantly share code, notes, and snippets.

@eteubert
Created February 3, 2018 15:05
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 eteubert/d166d757a80acaee065695598007a2f6 to your computer and use it in GitHub Desktop.
Save eteubert/d166d757a80acaee065695598007a2f6 to your computer and use it in GitHub Desktop.
Podlove Publisher: Set "rewrite" argument for Custom Post Type to `true` for compatibility with “The SEO Framework”
<?php
add_filter('podlove_post_type_args', function ($args) {
$args['rewrite'] = true;
return $args;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment