Advertisement
Guest User

Adding Titles and Captions to Relevanssi Index

a guest
Jun 6th, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_filter('relevanssi_content_to_index', 'add_extra_content', 10, 2);
  2. function add_extra_content($content, $post) {
  3. $images = get_field_object('gallery', $post->ID);
  4. if($images){
  5. foreach( $images as $image ) {
  6. $content .= " " . $image['title'];
  7. $content .= " " . $image['caption'];
  8. }
  9. return $content;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement