Imię *Adres e-mail *HTMLfunction forminator_callback($html) { // WordPress does not like to use shortcodes in html attributes preg_match_all('|(="[.*])(.*)([/.*])|U', $html, $matches); $codes = $matches[0]; if (!$codes) { return do_shortcode($html); } foreach ($codes as $code) { $html = str_replace($code, do_shortcode($code), $html); } return do_shortcode($html); } add_filter( 'forminator_render_fields_markup', 'forminator_callback' );Subskrybuj