Skip to content

Instantly share code, notes, and snippets.

@rayrutjes
Created July 26, 2016 16:09
Show Gist options
  • Save rayrutjes/4562327299682368adfa78a143462031 to your computer and use it in GitHub Desktop.
Save rayrutjes/4562327299682368adfa78a143462031 to your computer and use it in GitHub Desktop.
Include post tags in the searching - Algolia Search for Wordpress
<?php
function custom_posts_index_settings( array $settings ) {
$settings['attributesToIndex'][] = 'unordered(taxonomy_post_tag)';
return $settings;
}
add_filter( 'algolia_posts_index_settings', 'custom_posts_index_settings' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment