Skip to content

Instantly share code, notes, and snippets.

@JoeHana
Created December 22, 2016 23:30
Show Gist options
  • Save JoeHana/3181aaf9feae3ec17907c703dd1e1674 to your computer and use it in GitHub Desktop.
Save JoeHana/3181aaf9feae3ec17907c703dd1e1674 to your computer and use it in GitHub Desktop.
Custom Listing Feature Taxonomy Slug
<?php
/**
* Custom Listing Feature Taxonomy Slug
*/
add_filter( 'wpsight_rewrite_features_slug', 'custom_rewrite_features_slug', 11 );
function custom_rewrite_features_slug( $slug ) {
return 'feature';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment