JoeHana
4/30/2013 - 10:45 AM

Custom Property Category Slug

Custom Property Category Slug

<?php

/**
 * Custom Property Category Slug
 */ 
 
add_filter('wpcasa_rewrite_categories_slug', 'custom_rewrite_categories_slug');

function custom_rewrite_categories_slug($slug) {
	$slug = 'property-category';
	return $slug;
}