JoeHana
12/16/2013 - 12:50 PM

Custom Loop Titles

Custom Loop Titles

<?php

/**
 * Custom Loop Titles
 */

add_filter('wpsight_listing_loop_title_labels', 'custom_listing_loop_title_labels');

function custom_listing_loop_title_labels($labels) {
	$labels = array(	
		'search' 	   		=> __( 'Search Results', 'wpsight' ) . ': ',
		'tax_type_listing'  => __( 'Listing Type', 'wpsight' ) . ': ',
		'tax_type_property' => __( 'Property Type', 'wpsight' ) . ': ',
		'tax_feature'  		=> __( 'Feature', 'wpsight' ) . ': ',
		'tax_location' 		=> __( 'Location', 'wpsight' ) . ': ',
		'agent' 	   		=> __( 'Listing Agent', 'wpsight' ) . ': '	
	);
	return $labels;
}