
Priority Shortcodes
by swinggraphics on WordPress.org
Intended for use with the Classic Editor plugin.
Ever get annoyed or frustrated by the way TinyMCE+wpautop+do_shortcode wreak havoc on your shortcodes, wrapping Priority Shortcodes works by adding an action to The Codex says: wpautop recognizes shortcode syntax and will attempt not to wrap p or br tags around shortcodes that stand alone on a line by themselves. Shortcodes intended for use in this manner should ensure that the output is wrapped in an appropriate block tag such as But sometimes shortcodes stand on their own on a line, wanting desperately to be wrapped in a paragraph tag, and sometimes they don’t. Like a shortcode that generates a Where you want to process a shortcode with priority, use “[!” at the start. For example: Users of the new WordPress editor, “Gutenberg”, will probably not use Priority Shortcodes within the new editor, but the plugin continues to work in the Classic Editor.s around
s, and all sorts of craziness? This plugin allows you to specify shortcodes to be processed before those other actions, generating the clean code you expected.
the_content
and widget_text
hooks with a higher priority than wpautop
and do_shortcode
. The result is that those other actions run your shortcode’s final output, rather than trying to guess if it should be wrapped in tags, etc.
or
tag with some classes. (Yeah, you might want to use custom TinyMCE styles instead for a simple span.)
Usage
[my-shortcode]
becomes [!my-shortcode]
and [my-shortcode]Some content.[/my-shortcode]
becomes [!my-shortcode]Some content.[/my-shortcode]
.Gutenberg