If i search Roma i need first of all, the posts order alphabetically that is associated to the search word Roma, and then all the other post ever ordered alphabeticcaly.
Roma , or another city, is a meta_value “citta”. So when i search Roma i need firsy
:
– all post order by post_title alphabetically with the meta_value rome , and then the other
Now im using this:
add_filter( ‘relevanssi_orderby’, function( $orderby ) { return ‘post_title’; } );
add_filter( ‘relevanssi_order’, function( $order ) { return ‘asc’; } );