JoeHana
12/22/2016 - 11:30 PM

Custom Listing Feature Taxonomy Slug

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';
}