Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created April 19, 2019 13:54
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 jchristopher/954dbf64a0660818e82a41a7966f3757 to your computer and use it in GitHub Desktop.
Save jchristopher/954dbf64a0660818e82a41a7966f3757 to your computer and use it in GitHub Desktop.
Add Markdown MIME type support in SearchWP
<?php
// Add Markdown MIME type support in SearchWP.
add_filter( 'searchwp_mimes_text', function( $mimes ) {
$mimes[] = 'text/markdown';
return $mimes;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment