352 | | $allblocks = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|noscript|legend|section|article|aside|hgroup|header|footer|nav|figure|details|menu|summary)'; |
| 353 | /** |
| 354 | * Filter the list of all blocks used by wpautop. |
| 355 | * |
| 356 | * @since 4.0 |
| 357 | * |
| 358 | * @param string $allblocks List with all filterable blocks. |
| 359 | */ |
| 360 | $allblocks = apply_filters( 'wpautop_allblocks', '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|noscript|legend|section|article|aside|hgroup|header|footer|nav|figure|details|menu|summary)' ); |