Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active July 22, 2017 21:32
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 kjohnson/9911a255421552c7ad3479e5a4aa5ca9 to your computer and use it in GitHub Desktop.
Save kjohnson/9911a255421552c7ad3479e5a4aa5ca9 to your computer and use it in GitHub Desktop.
Adds a shortcode wrapper for wpautop.
<?php
// ...
/*
* [wpautop]Your text/shortcode here[/wpautop]
*/
add_shortcode( 'wpautop', 'my_wpautop_shortcode' );
function my_wpautop_shortcode( $atts, $content ){
return wpautop( do_shortcode( $content ) );
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment