Exclude post attachments in indexing but include attachments for products in Relevanssi

Exclude post attachments in indexing but include attachments for products in Relevanssi.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'relevanssi_indexing_restriction', 'non_product_attachments' );
function non_product_attachments( $restriction ) {
	global $wpdb;
	$restriction['mysql']  .= " AND post.ID NOT IN (
      SELECT ID FROM $wpdb->posts
      WHERE post_type = 'attachment' AND post_parent NOT IN ( SELECT ID FROM $wpdb->posts WHERE post_type = 'product' ) ) ";
	$restriction['reason'] .= ' Non-product attachment';
	return $restriction;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.