Skip to content

Instantly share code, notes, and snippets.

@caralgar
Last active June 13, 2017 07:29
Show Gist options
  • Save caralgar/7b5b6ca941457a9dcc5f283a38bbdcc0 to your computer and use it in GitHub Desktop.
Save caralgar/7b5b6ca941457a9dcc5f283a38bbdcc0 to your computer and use it in GitHub Desktop.
Do not texturize the "myshortcode" contents
<?php
/*
* https://codex.wordpress.org/Plugin_API/Filter_Reference/no_texturize_shortcodes
*/
add_filter( 'no_texturize_shortcodes', 'shortcodes_to_exempt_from_wptexturize' );
function shortcodes_to_exempt_from_wptexturize( $shortcodes ) {
$shortcodes[] = 'myshortcode';
return $shortcodes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment