Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/150504f9b89d4f0314504df4fd686817 to your computer and use it in GitHub Desktop.
Save propertyhive/150504f9b89d4f0314504df4fd686817 to your computer and use it in GitHub Desktop.
add_filter( 'propertyhive_register_post_type_property', 'change_property_slug' );
function change_property_slug( $args )
{
$args['rewrite'] = array( 'slug' => 'your-property-archive', 'with_front' => false );
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment