Skip to content

Instantly share code, notes, and snippets.

@igorbenic
Created April 23, 2020 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igorbenic/fd18b4c272f549f687a4380e606c890b to your computer and use it in GitHub Desktop.
Save igorbenic/fd18b4c272f549f687a4380e606c890b to your computer and use it in GitHub Desktop.
Pets and User Submitted Posts
<?php
function pets_usp_modify_post_type( $post_type ) {
return 'pets'; // edit post type as needed
}
add_filter( 'usp_post_type', 'pets_usp_modify_post_type' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment