Polylang attachment searching
…you can either enable “Media translate” so that your media files have a language, or you can use this code in your theme functions.php to always include attachments in the results: add_filter( ‘relevanssi_where’, function( $query ) { global $wpdb; $query = str_replace( ‘AND relevanssi.doc’, ‘AND ( relevanssi.doc’, $query ); $query…If Polylang is in use and you haven’t enabled “Media translation“, your attachment files won’t have a language. That’s fine, except when Relevanssi searches fail to find your attachment because they’re looking for posts in a specific language. Suppose you want to include attachments in Polylang searches. In that case,…