Skip to content

Instantly share code, notes, and snippets.

@alessandrotesoro
Created July 20, 2015 12:09
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 alessandrotesoro/c1401c359f83acffcb0e to your computer and use it in GitHub Desktop.
Save alessandrotesoro/c1401c359f83acffcb0e to your computer and use it in GitHub Desktop.
Add custom directory template to dropdown
function wpum_add_custom_directory_template( $templates ) {
$templates['custom'] = 'Custom Template';
return $templates;
}
add_filter( 'wpum_get_directory_templates', 'wpum_add_custom_directory_template' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment