Bricks version 1.10.2: How to add additional HTML tags (like form and select) via filters

Image[1]-Bricks version 1.10.2: How to add additional HTML tags (such as form and select) via filters - Photon Fluctuation Network | Professional WordPress Repair Service, Global Reach, Fast Response

releases1.10.2Bricks limits allowed HTML tags to WordPress core logicwp_kses_allowed_html( 'post' )The

This results in allowing the use of the following ready-made HTML tags:

address, a, abbr, acronym, area, article, aside, audio, b, bdo, big, blockquote, br, button, caption, cite, code, col, colgroup, del, dd, dfn, details, div, dl, dt, em, fieldset, figure, figcaption, font, footer, h1, h2, h3, h4, h5, h6, header, hgroup, hr, i, img, ins, kbd, label, legend, li, main, map, mark , menu, nav, object, p, pre, q, rb, rp, rt, rtc, ruby, s, samp, span, section, small, strike, strong, sub, summary, sup, table, tbody, td, textarea, tfoot, th, thead, title, tr, hr, i, img, ins, kbd, label, legend, li, main, map, mark th, thead, title, tr, track, tt, u, ul, ol, var, video

For example.formBy default it is not allowed to set the "Custom labels" and will raise the following error in the builder:

Image [2]-Bricks version 1.10.2: How to add additional HTML tags (like form and select) via filters - Photon Flux | Professional WordPress repair service, worldwide, fast response

Using a new filter as shown in the following code snippet, theformtag is added to the list of allowed HTML tags and can be used without throwing any errors.


add_filter( 'bricks/allowed_html_tags', function( $allowed_html_tags ) {
    // Define the additional tags to be added (e.g. 'form' & 'select')
    $additional_tags = ['form', 'select'];

    // Merge additional tags with the existing allowed tags
    return array_merge( $allowed_html_tags, $additional_tags ); } );; // Merge additional tags with the existing allowed tags.
} ).

Contact Us
Can't read the article? Contact us for free answers! Free help for personal, small business sites!
Tel: 020-2206-9892
QQ咨询:1025174874
(iii) E-mail: info@361sale.com
Working hours: Monday to Friday, 9:30-18:30, holidays off
© Reprint statement
Author: xieyingsong
THE END
If you like it, support it.
kudos0 share (joys, benefits, privileges etc) with others
commentaries sofa-buying

Please log in to post a comment

    No comments