Shortcodes: Add shortcode_unautop to widget_block_content filter#11513
Shortcodes: Add shortcode_unautop to widget_block_content filter#11513t-hamano wants to merge 2 commits intoWordPress:trunkfrom
Conversation
The `widget_block_content` filter lacked `shortcode_unautop`, unlike `widget_text_content` which includes it. This caused shortcodes rendered via the Shortcode block to produce invalid HTML such as `<p><div>...</div></p>` because `wpautop()` (called inside `render_block_core_shortcode()`) wrapped the shortcode in a `<p>` tag before `do_shortcode` processed it. By adding `shortcode_unautop` at priority 10 (after `do_blocks` at 9, before `do_shortcode` at 11), the `<p>` wrapper is removed before shortcodes are executed, matching the behavior of `widget_text_content`. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the Core Committers: Use this line as a base for the props when committing in SVN: To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
Test using WordPress PlaygroundThe changes in this pull request can previewed and tested using a WordPress Playground instance. WordPress Playground is an experimental project that creates a full WordPress instance entirely within the browser. Some things to be aware of
For more details about these limitations and more, check out the Limitations page in the WordPress Playground documentation. |
Trac ticket: https://core.trac.wordpress.org/ticket/62694
Use of AI Tools
Claude Code