Index ACF fields
-
I am triying to add to index custom post type ACF fields with no success…
Using this 2 filters:
add_filter( 'algolia_post_shared_attributes', 'wizo_algolia_custom_fields', 10, 2 ); add_filter( 'algolia_searchable_post_shared_attributes', 'wizo_algolia_custom_fields', 10, 2 );
if ( 'album' !== $post->post_type ) { // We only want to add an attribute for the 'speaker' post type. // Here the post isn't a 'speaker', so we return the attributes unaltered. return $attributes; }
Can you help with this?
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Index ACF fields’ is closed to new replies.