Indexing HTML comments in Relevanssi

Indexing HTML comments in Relevanssi on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'relevanssi_remove_punctuation', 'rlv_keep_comments', 9 );
function rlv_keep_comments( $string ) {
	$string = str_replace( '<!', '', $string );
	return $string;
}

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