Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created September 8, 2025 07:45
Show Gist options
  • Save propertyhive/d82bdf69981e4d44388cd80256c6f8c2 to your computer and use it in GitHub Desktop.
Save propertyhive/d82bdf69981e4d44388cd80256c6f8c2 to your computer and use it in GitHub Desktop.
Order property type taxonomy dropdown by most popular
add_filter( 'propertyhive_form_taxonomy_terms_args', 'custom_property_type_order', 10, 2 );
function custom_property_type_order($args, $field)
{
if ( $field['type'] == 'property_type' )
{
$args['orderby'] = 'count';
$args['order'] = 'DESC';
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment