rem_agent_page_slider_style

How Can We Help?

rem_agent_page_slider_style

This filter is responsible for the property listing style that displays in a slider, on the Agent Template.

Arguments

  1. Listing Style [integer]

Example

Suppose, you want to change this style to Style 6. You will use the following code inside your theme’s functions.php file.

add_filter( 'rem_agent_page_slider_style', 'rem_agent_page_slider_style', 10, 1 );

function rem_agent_page_slider_style($style){
	return 6;
}