Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rayrutjes/179877e4ca2994c9b7fc53d47320f264 to your computer and use it in GitHub Desktop.
Save rayrutjes/179877e4ca2994c9b7fc53d47320f264 to your computer and use it in GitHub Desktop.
Remove HTML tags from title - Algolia WordPress plugin
<?php
function remote_html_tags( array $shared_attributes, WP_Post $post) {
$shared_attributes['post_title'] = strip_tags( $shared_attributes['post_title'] );
return $shared_attributes;
}
add_filter( 'algolia_post_shared_attributes', 'remote_html_tags', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment