{"id":367992,"date":"2022-10-25T11:24:00","date_gmt":"2022-10-25T08:24:00","guid":{"rendered":"https:\/\/themewp.inform.click\/?p=367992"},"modified":"2023-05-09T17:44:31","modified_gmt":"2023-05-09T14:44:31","slug":"usando-um-elemento-de-botao-html5-como-formulario-de-contato-7-enviar","status":"publish","type":"post","link":"https:\/\/themewp.inform.click\/pt-pt\/usando-um-elemento-de-botao-html5-como-formulario-de-contato-7-enviar\/","title":{"rendered":"Usando um elemento de bot\u00e3o HTML5 como formul\u00e1rio de contato 7 Enviar"},"content":{"rendered":"\n<p>Ter um site WordPress significa que voc\u00ea provavelmente precisar\u00e1 ter um formul\u00e1rio de contato em algum lugar, seja para um boletim informativo, uma <a href=\"https:\/\/themewp.inform.click\/pt-pt\/pagina-de-contato-do-wordpress-e-por-que-te-la\/\" title=\"p\u00e1gina de contato\">p\u00e1gina de contato<\/a>, uma enquete ou qualquer outra coisa. Com CMS como o WordPress, <strong>configurar um formul\u00e1rio de contato \u00e9 uma tarefa bastante simples<\/strong>. Ou seja, <a href=\"https:\/\/themewp.inform.click\/pt-pt\/top-5-plugins-gratuitos-de-formulario-de-contato-para-wordpress\/\" title=\"existem muitos plugins de formul\u00e1rio de contato\">existem muitos plugins de formul\u00e1rio de contato<\/a> que voc\u00ea pode usar, e <a href=\"https:\/\/wordpress.org\/plugins\/contact-form-7\/\" target=\"_blank\" rel=\"noopener nofollow\" class=\"external external_icon\">o Contact Form 7<\/a> \u00e9 um dos mais populares.<\/p>\n<p>Para que voc\u00ea possa ter uma vis\u00e3o mais clara do que o plug-in Contact Form 7 pode fazer, aqui est\u00e3o alguns exemplos de formul\u00e1rios de contato feitos com este plug-in que v\u00eam com temas premium no ThemeForest:<\/p>\n<p>N\u00e3o s\u00f3 \u00e9 f\u00e1cil criar qualquer tipo de formul\u00e1rio de contato no WordPress, mas o processo em si tamb\u00e9m \u00e9 bem documentado. Por isso vamos direto ao ponto.<\/p>\n<p>Ao usar este plugin, voc\u00ea n\u00e3o ter\u00e1 que se preocupar em criar um formul\u00e1rio personalizado e uma funcionalidade de back-end, o que acelerar\u00e1 drasticamente o processo. No entanto, o que voc\u00ea pode achar problem\u00e1tico \u00e9 um bot\u00e3o de envio do Contact Form 7, que \u00e9 um elemento de entrada de type=&quot;submit&quot;.<\/p>\n<p>Mesmo com o bot\u00e3o de envio de entrada padr\u00e3o, voc\u00ea ter\u00e1 um bom formul\u00e1rio de trabalho. Ainda assim, <strong>\u00a0o problema surge se voc\u00ea quiser adicionar um estilo adicional para esse elemento<\/strong>. Como voc\u00ea j\u00e1 deve saber, existem certas limita\u00e7\u00f5es quando se trata de css, pois voc\u00ea n\u00e3o pode usar os pseudo elementos aqui, como :before ou :after, que podem ser \u00fateis para adicionar algum sublinhado, \u00edcone de fonte ic\u00f4nica ou qualquer outra coisa para anima\u00e7\u00e3o o que seria um belo toque final para o seu formul\u00e1rio.<\/p>\n<p>Claro, pode ser poss\u00edvel obter anima\u00e7\u00f5es excelentes apenas envolvendo um bot\u00e3o de envio com algum div com classe personalizada, mas alterando a entrada para o bot\u00e3o, voc\u00ea pode ter muito mais controle.<\/p>\n<p>Vamos ver como voc\u00ea pode usar um elemento de bot\u00e3o HTML5 como um bot\u00e3o de envio para seu formul\u00e1rio de contato.<\/p>\n<p>Antes da altera\u00e7\u00e3o, um bot\u00e3o de envio ficar\u00e1 assim.<\/p>\n<p><a href=\"https:\/\/themewp.inform.click\/wp-content\/uploads\/2022\/10\/post-333243-633e650cd71ab.jpg\" data-rel=\"lightbox\"><img decoding=\"async\" class=\"SDStudio-light-box-enable SDStudio-editor-tools-md-imp\" src=\"https:\/\/themewp.inform.click\/wp-content\/uploads\/2022\/10\/post-333243-633e650cd71ab.jpg\" alt=\"Usando um elemento de bot\u00e3o HTML5 como formul\u00e1rio de contato 7 Enviar\"><\/a><\/p>\n<p>Primeiro, precisamos remover a tag de envio padr\u00e3o do Contact Form 7. Voc\u00ea pode fazer isso com esta simples linha de c\u00f3digo:<\/p>\n<p>\/ removendo a tag de envio padr\u00e3o \/<\/p>\n<p>remove_action(&#8216;wpcf7_init&#8217;, &#8216;wpcf7_add_form_tag_submit&#8217;);<\/p>\n<p>\/ removendo a tag de envio padr\u00e3o \/ remove_action(&#8216;wpcf7_init&#8217;, &#8216;wpcf7_add_form_tag_submit&#8217;);<\/p>\n<pre><code>\/*removing default submit tag*\/\nremove_action('wpcf7_init', 'wpcf7_add_form_tag_submit');<\/code><\/pre>\n<p>Em segundo lugar, precisamos adicionar a\u00e7\u00e3o com nossa fun\u00e7\u00e3o que manter\u00e1 <strong>nossa marca\u00e7\u00e3o personalizada para o bot\u00e3o<\/strong>. Esta \u00e9 outra linha simples:<\/p>\n<p>\/ adicionando a\u00e7\u00e3o com fun\u00e7\u00e3o que lida com nossa marca\u00e7\u00e3o de bot\u00e3o \/<\/p>\n<p>add_action(&#8216;wpcf7_init&#8217;, &#8216;twentysixteen_child_cf7_button&#8217;);<\/p>\n<p>\/ adicionando a\u00e7\u00e3o com fun\u00e7\u00e3o que lida com nossa marca\u00e7\u00e3o de bot\u00e3o \/ add_action(&#8216;wpcf7_init&#8217;, &#8216;twentysixteen_child_cf7_button&#8217;);<\/p>\n<pre><code>\/*adding action with function which handles our button markup*\/\nadd_action('wpcf7_init', 'twentysixteen_child_cf7_button');<\/code><\/pre>\n<p>Em seguida, estamos adicionando uma tag que chamar\u00e1 uma fun\u00e7\u00e3o de manipulador de bot\u00e3o:<\/p>\n<p>\/ adicionando a tag do bot\u00e3o de envio \/<\/p>\n<p>if (!function_exists(&#8216;twentysixteen_child_cf7_button&#8217;)) {<\/p>\n<p>function Twentysixteen_child_cf7_button() {<\/p>\n<p>wpcf7_add_form_tag(&#8216;submit&#8217;, &#8216;twentysixteen_child_cf7_button_handler&#8217;);<\/p>\n<p>\/ adicionando a tag do bot\u00e3o de envio \/ if (!function_exists(&#8216;twentysixteen_child_cf7_button&#8217;)) { function twentysixteen_child_cf7_button() { wpcf7_add_form_tag(&#8216;submit&#8217;, &#8216;twentysixteen_child_cf7_button_handler&#8217;); } }<\/p>\n<pre><code>\/*adding out submit button tag*\/\nif (!function_exists('twentysixteen_child_cf7_button')) {\nfunction twentysixteen_child_cf7_button() {\nwpcf7_add_form_tag('submit', 'twentysixteen_child_cf7_button_handler');\n}\n}<\/code><\/pre>\n<p>Finalmente, temos que adicionar uma marca\u00e7\u00e3o ao manipulador:<\/p>\n<p>\/ marca\u00e7\u00e3o do bot\u00e3o de sa\u00edda dentro do manipulador \/<\/p>\n<p>if (!function_exists(&#8216;twentysixteen_child_cf7_button_handler&#8217;)) {<\/p>\n<p>function Twentysixteen_child_cf7_button_handler($tag) {<\/p>\n<p>$tag = new WPCF7_FormTag($tag);<\/p>\n<p>$class = wpcf7_form_controls_class($tag-&gt;type);<\/p>\n<p>$atts[&#8216;class&#8217;] = $tag-&gt;get_class_option($class);<\/p>\n<p>$atts[&#8216;class&#8217;] .= &#8216; twentysteen-child-custom-btn&#8217;;<\/p>\n<p>$atts[&#8216;id&#8217;] = $tag-&gt;get_id_option();<\/p>\n<p>$atts[&#8216;tabindex&#8217;] = $tag-&gt;get_option(&#8216;tabindex&#8217;, &#8216;int&#8217;, true);<\/p>\n<p>$valor = isset($tag-&gt;valores[0])? $tag-&gt;valores[0]: &quot;;<\/p>\n<p>$valor = esc html_ (&#8216;Fale Conosco&#8217;, &#8216;vinte e dezesseis&#8217;);<\/p>\n<p>$atts[&#8216;tipo&#8217;] = &#8216;enviar&#8217;;<\/p>\n<p>$atts = wpcf7_format_atts($atts);<\/p>\n<p>$html = sprintf(&#8221;, $atts, $valor);<\/p>\n<p>\/ marca\u00e7\u00e3o de bot\u00e3o de sa\u00edda dentro do manipulador \/ if (!function existe(&#8216; twentysixteen child_cf7_button_handler&#8217;)) { function twentysixteen_child_cf7_button_handler($tag) { $tag = new WPCF7_FormTag($tag); $class = wpcf7_form_controls_class($tag-&gt;type); $atts = array(); $atts[&#8216;class&#8217;] = $tag-&gt;get_class_option($class); $atts[&#8216;class&#8217;] .= &#8216; twentysteen-child-custom-btn&#8217;; $atts[&#8216;id&#8217;] = $tag-&gt;get_id_option(); $atts[&#8216;tabindex&#8217;] = $tag-&gt;get_option(&#8216;tabindex&#8217;, &#8216;int&#8217;, true); $valor = isset($tag-&gt;valores[0])? $tag-&gt;valores[0]: &#8220;; if (vazio($valor)) { $valor = esc_html (&#8216;Fale Conosco&#8217;, &#8216;vinte e dezesseis&#8217;); } $atts[&#8216;type&#8217;] = &#8216;submit&#8217;; $atts = wpcf7_format_atts($atts); $html = sprintf(&#8221;, $atts, $valor); retorna $html; } }<\/p>\n<pre><code>\/*out button markup inside handler*\/\nif (!function_exists('twentysixteen_child_cf7_button_handler')) {\nfunction twentysixteen_child_cf7_button_handler($tag) {\n$tag = new WPCF7_FormTag($tag);\n$class = wpcf7_form_controls_class($tag-&gt;type);\n$atts = array();\n$atts['class'] = $tag-&gt;get_class_option($class);\n$atts['class'] .= ' twentysixteen-child-custom-btn';\n$atts['id'] = $tag-&gt;get_id_option();\n$atts['tabindex'] = $tag-&gt;get_option('tabindex', 'int', true);\n$value = isset($tag-&gt;values[0])? $tag-&gt;values[0]: '';\nif (empty($value)) {\n$value = esc_html__('Contact Us', 'twentysixteen');\n}\n$atts['type'] = 'submit';\n$atts = wpcf7_format_atts($atts);\n$html = sprintf('', $atts, $value);\nreturn $html;\n}\n}<\/code><\/pre>\n<p>A fun\u00e7\u00e3o do manipulador \u00e9 a parte mais importante. Al\u00e9m de imprimir uma classe e um ID padr\u00e3o, tamb\u00e9m <strong>adicionaremos uma classe css personalizada dentro dela<\/strong>. Na \u00faltima parte onde temos uma vari\u00e1vel $html, estamos colocando uma marca\u00e7\u00e3o de bot\u00e3o com o \u00edcone de divisa FontAwesome. Observe que <strong>voc\u00ea precisa ter essa fonte FontAwesome em seu tema.<\/strong> Se voc\u00ea n\u00e3o o tiver, certifique-se de encontrar um plugin que o inclua.<\/p>\n<p>Agora, nosso bot\u00e3o de envio alterado ficar\u00e1 assim:<\/p>\n<p><a href=\"https:\/\/themewp.inform.click\/wp-content\/uploads\/2022\/10\/post-333243-633e65105c578.jpg\" data-rel=\"lightbox\"><img decoding=\"async\" class=\"SDStudio-light-box-enable SDStudio-editor-tools-md-imp\" src=\"https:\/\/themewp.inform.click\/wp-content\/uploads\/2022\/10\/post-333243-633e65105c578.jpg\" alt=\"Usando um elemento de bot\u00e3o HTML5 como formul\u00e1rio de contato 7 Enviar\"><\/a><\/p>\n<p>Como voc\u00ea pode ver, quando voc\u00ea inspeciona sua p\u00e1gina com o inspetor da Web do Chrome, ela cont\u00e9m exatamente a mesma marca\u00e7\u00e3o que definimos dentro do manipulador.<\/p>\n<p><a href=\"https:\/\/themewp.inform.click\/wp-content\/uploads\/2022\/10\/post-333243-633e6513bb3e9.jpg\" data-rel=\"lightbox\"><img decoding=\"async\" class=\"SDStudio-light-box-enable SDStudio-editor-tools-md-imp\" src=\"https:\/\/themewp.inform.click\/wp-content\/uploads\/2022\/10\/post-333243-633e6513bb3e9.jpg\" alt=\"Usando um elemento de bot\u00e3o HTML5 como formul\u00e1rio de contato 7 Enviar\"><\/a><\/p>\n<p>E aqui est\u00e1 o c\u00f3digo completo:<\/p>\n<p>\/ removendo a tag de envio padr\u00e3o \/<\/p>\n<p>remove_action(&#8216;wpcf7_init&#8217;, &#8216;wpcf7_add_form_tag_submit&#8217;);<\/p>\n<p>\/ adicionando a\u00e7\u00e3o com fun\u00e7\u00e3o que lida com nossa marca\u00e7\u00e3o de bot\u00e3o \/<\/p>\n<p>add_action(&#8216;wpcf7_init&#8217;, &#8216;twentysixteen_child_cf7_button&#8217;);<\/p>\n<p>\/ adicionando a tag do bot\u00e3o de envio \/<\/p>\n<p>if (!function_exists(&#8216;twentysixteen_child_cf7_button&#8217;)) {<\/p>\n<p>function Twentysixteen_child_cf7_button() {<\/p>\n<p>wpcf7_add_form_tag(&#8216;submit&#8217;, &#8216;twentysixteen_child_cf7_button_handler&#8217;);<\/p>\n<p>\/ marca\u00e7\u00e3o do bot\u00e3o de sa\u00edda dentro do manipulador \/<\/p>\n<p>if (!function_exists(&#8216;twentysixteen_child_cf7_button_handler&#8217;)) {<\/p>\n<p>function Twentysixteen_child_cf7_button_handler($tag) {<\/p>\n<p>$tag = new WPCF7_FormTag($tag);<\/p>\n<p>$class = wpcf7_form_controls_class($tag-&gt;type);<\/p>\n<p>$atts[&#8216;class&#8217;] = $tag-&gt;get_class_option($class);<\/p>\n<p>$atts[&#8216;class&#8217;] .= &#8216; twentysteen-child-custom-btn&#8217;;<\/p>\n<p>$atts[&#8216;id&#8217;] = $tag-&gt;get_id_option();<\/p>\n<p>$atts[&#8216;tabindex&#8217;] = $tag-&gt;get_option(&#8216;tabindex&#8217;, &#8216;int&#8217;, true);<\/p>\n<p>$valor = isset($tag-&gt;valores[0])? $tag-&gt;valores[0]: &#8220;;<\/p>\n<p>$valor = esc html_ (&#8216;Enviar&#8217;, &#8216;vinte e dezesseis&#8217;);<\/p>\n<p>$atts[&#8216;tipo&#8217;] = &#8216;enviar&#8217;;<\/p>\n<p>$atts = wpcf7_format_atts($atts);<\/p>\n<p>$html = sprintf(&#8221;, $atts, $valor);<\/p>\n<p>\/ removendo a tag de envio padr\u00e3o \/ remove_action(&#8216;wpcf7_init&#8217;, &#8216;wpcf7_add_form_tag_submit&#8217;); \/ adicionando a\u00e7\u00e3o com fun\u00e7\u00e3o que lida com nossa marca\u00e7\u00e3o de bot\u00e3o \/ add_action(&#8216;wpcf7_init&#8217;, &#8216;twentysixteen_child_cf7_button&#8217;); \/ adicionando a tag do bot\u00e3o de envio \/ if (!function_exists(&#8216;twentysixteen_child_cf7_button&#8217;)) { function twentysixteen_child_cf7_button() { wpcf7_add_form_tag(&#8216;submit&#8217;, &#8216;twentysixteen_child_cf7_button_handler&#8217;); } } \/ marca\u00e7\u00e3o do bot\u00e3o de sa\u00edda dentro do manipulador \/ if (!function existe(&#8216;twentysixteenchild_cf7_button_handler&#8217;)) { function twentysixteen_child_cf7_button_handler($tag) { $tag = new WPCF7_FormTag($tag); $class = wpcf7_form_controls_class($tag-&gt;type); $atts = array(); $atts[&#8216;class&#8217;] = $tag-&gt;get_class_option($class); $atts[&#8216;class&#8217;] .= &#8216; twentysteen-child-custom-btn&#8217;; $atts[&#8216;id&#8217;] = $tag-&gt;get_id_option(); $atts[&#8216;tabindex&#8217;] = $tag-&gt;get_option(&#8216;tabindex&#8217;, &#8216;int&#8217;, true); $valor = isset($tag-&gt;valores[0])? $tag-&gt;valores[0]: &#8220;; if (vazio($valor)) { $valor = esc_html (&#8216;Enviar&#8217;, &#8216;vinte e dezesseis&#8217;); } $atts[&#8216;type&#8217;] = &#8216;submit&#8217;; $atts = wpcf7_format_atts($atts); $html = sprintf(&#8221;, $atts, $valor); retorna $html; } }<\/p>\n<pre><code>\/*removing default submit tag*\/\nremove_action('wpcf7_init', 'wpcf7_add_form_tag_submit');\n\/*adding action with function which handles our button markup*\/\nadd_action('wpcf7_init', 'twentysixteen_child_cf7_button');\n\/*adding out submit button tag*\/\nif (!function_exists('twentysixteen_child_cf7_button')) {\nfunction twentysixteen_child_cf7_button() {\nwpcf7_add_form_tag('submit', 'twentysixteen_child_cf7_button_handler');\n}\n}\n\/*out button markup inside handler*\/\nif (!function_exists('twentysixteen_child_cf7_button_handler')) {\nfunction twentysixteen_child_cf7_button_handler($tag) {\n$tag = new WPCF7_FormTag($tag);\n$class = wpcf7_form_controls_class($tag-&gt;type);\n$atts = array();\n$atts['class'] = $tag-&gt;get_class_option($class);\n$atts['class'] .= ' twentysixteen-child-custom-btn';\n$atts['id'] = $tag-&gt;get_id_option();\n$atts['tabindex'] = $tag-&gt;get_option('tabindex', 'int', true);\n$value = isset($tag-&gt;values[0])? $tag-&gt;values[0]: '';\nif (empty($value)) {\n$value = esc_html__('Send', 'twentysixteen');\n}\n$atts['type'] = 'submit';\n$atts = wpcf7_format_atts($atts);\n$html = sprintf('', $atts, $value);\nreturn $html;\n}\n}<\/code><\/pre>\n<p>Com tudo pronto, voc\u00ea pode <strong>usar classes extras e marca\u00e7\u00e3o para estilizar o bot\u00e3o ao seu gosto<\/strong>. Como extra, adicionaremos uma anima\u00e7\u00e3o simples com um c\u00f3digo css abaixo.<\/p>\n<p>button.twentysixteen-child-custom-btn {<\/p>\n<p>-webkit-transition: -webkit-background .2s facilita a sa\u00edda;<\/p>\n<p>-moz-transi\u00e7\u00e3o: -moz-background .2s facilita a sa\u00edda;<\/p>\n<p>transi\u00e7\u00e3o: facilidade de fundo .2s;<\/p>\n<p>button.twentysixteen-child-custom-btn .twentysixteen-child-custom-btn-text {<\/p>\n<p>button.twentysixteen-child-custom-btn .twentysixteen-child-custom-icon {<\/p>\n<p>-webkit-transition: -webkit-transform .2s facilita a sa\u00edda;<\/p>\n<p>-moz-transi\u00e7\u00e3o: -moz-transform .2s facilita a sa\u00edda;<\/p>\n<p>transi\u00e7\u00e3o: transforme facilidade de sa\u00edda de .2s;<\/p>\n<p>button.twentysixteen-child-custom-btn:hover .twentysixteen-child-custom-icon {<\/p>\n<p>-webkit-transform: translate3d(3px,0,0);<\/p>\n<p>-moz-transform: translate3d(3px,0,0);<\/p>\n<p>transform: translate3d(3px,0,0);<\/p>\n<p>button.twentysixteen-child-custom-btn { preenchimento: 15px 45px; -webkit-transition: -webkit-background .2s facilita a sa\u00edda; -moz-transi\u00e7\u00e3o: -moz-background .2s facilita a sa\u00edda; transi\u00e7\u00e3o: facilidade de fundo .2s; } button.twentysixteen-child-custom-btn .twentysixteen-child-custom-btn-text { margin-right: 7px; tamanho da fonte: 15px; } button.twentysixteen-child-custom-btn .twentysixteen-child-custom-icon { font-size: 12px; posi\u00e7\u00e3o: relativa; exibi\u00e7\u00e3o: bloco em linha; alinhamento vertical: meio; altura da linha: herdar; -webkit-transition: -webkit-transform .2s facilita a sa\u00edda; -moz-transi\u00e7\u00e3o: -moz-transform .2s facilita a sa\u00edda; transi\u00e7\u00e3o: transforme facilidade de sa\u00edda de .2s; } button.twentysixteen-child-custom-btn:hover .twentysixteen-child-custom-icon { -webkit-transform: translate3d(3px,0,0); -moz-transform: translate3d(3px,0,0); transform: translate3d(3px,0,0); }<\/p>\n<pre><code>button.twentysixteen-child-custom-btn {\npadding: 15px 45px;\n-webkit-transition: -webkit-background .2s ease-out;\n-moz-transition: -moz-background .2s ease-out;\ntransition: background .2s ease;\n}\nbutton.twentysixteen-child-custom-btn .twentysixteen-child-custom-btn-text {\nmargin-right: 7px;\nfont-size: 15px;\n}\nbutton.twentysixteen-child-custom-btn .twentysixteen-child-custom-icon {\nfont-size: 12px;\nposition: relative;\ndisplay: inline-block;\nvertical-align: middle;\nline-height: inherit;\n-webkit-transition: -webkit-transform .2s ease-out;\n-moz-transition: -moz-transform .2s ease-out;\ntransition: transform .2s ease-out;\n}\nbutton.twentysixteen-child-custom-btn:hover .twentysixteen-child-custom-icon {\n-webkit-transform: translate3d(3px,0,0);\n-moz-transform: translate3d(3px,0,0);\ntransform: translate3d(3px,0,0);\n}<\/code><\/pre>\n<p>O css pode ser adicionado dentro do arquivo css do tema filho ou simplesmente no back-end do WordPress &gt; Apar\u00eancia &gt; Personalizar &gt; Campo CSS adicional e, com ele, voc\u00ea ter\u00e1 uma bela anima\u00e7\u00e3o de uma seta em movimento ao passar o mouse.<\/p>\n<p><a href=\"https:\/\/themewp.inform.click\/wp-content\/uploads\/2022\/10\/post-333243-633e651736255.jpg\" data-rel=\"lightbox\"><img decoding=\"async\" class=\"SDStudio-light-box-enable SDStudio-editor-tools-md-imp\" src=\"https:\/\/themewp.inform.click\/wp-content\/uploads\/2022\/10\/post-333243-633e651736255.jpg\" alt=\"Usando um elemento de bot\u00e3o HTML5 como formul\u00e1rio de contato 7 Enviar\"><\/a><\/p>\n<p>E \u00e9 assim que voc\u00ea substitui um bot\u00e3o de envio do Contact Form 7 por um elemento de bot\u00e3o HTML5. Esperamos que voc\u00ea ache nossas instru\u00e7\u00f5es \u00fateis. Se sim, por favor, compartilhe com outras pessoas que tamb\u00e9m podem fazer uso dele.<\/p>\n<p><div id=\"PostUnique_PostSource\" style=\"padding-top: 50px\">Fonte de grava\u00e7\u00e3o:  <a target=\"_blank\" rel=\"noopener nofollow\" href=\"\/\/wpklik.com\" class=\"external external_icon\">wpklik.com<\/a><\/div><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Se voc\u00ea deseja adicionar um estilo adicional ao seu formul\u00e1rio de contato, voc\u00ea pode usar um elemento de bot\u00e3o HTML5 como um bot\u00e3o de envio. Aqui est\u00e1 como us\u00e1-lo.<\/p>\n","protected":false},"author":1,"featured_media":364438,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","_wp_rev_ctl_limit":""},"categories":[573],"tags":[848],"class_list":["post-367992","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-nocoes-basicas-do-wordpress","tag-affiai-pt-pt"],"_links":{"self":[{"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/posts\/367992","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/comments?post=367992"}],"version-history":[{"count":0,"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/posts\/367992\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/media\/364438"}],"wp:attachment":[{"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/media?parent=367992"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/categories?post=367992"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/themewp.inform.click\/pt-pt\/wp-json\/wp\/v2\/tags?post=367992"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}