Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created October 24, 2017 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save propertyhive/d7c34e61e860e2bbed1fba5f60d468ec to your computer and use it in GitHub Desktop.
Save propertyhive/d7c34e61e860e2bbed1fba5f60d468ec to your computer and use it in GitHub Desktop.
Customise Map Search views
add_filter( 'propertyhive_results_views', 'custom_ph_views' );
function custom_ph_views($views)
{
$views = array(
'list' => array(
'default' => true,
'content' => 'LIST ICON HERE'
),
'map' => array(
'content' => 'MAP ICON HERE'
)
);
return $views;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment