This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://api.whatsapp.com/send?phone=5588988459521">Clique para Abrir</a> | |
<!-- Formato do Número(99 99 9 9999 9999), ex: 5588988459521 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fonte(e){ | |
let elemento = $(".acessibilidade"); | |
let fonte = elemento.css('font-size'); | |
if (e == 'a') { | |
elemento.css("fontSize", parseInt(fonte) + 1); | |
} else if('d'){ | |
elemento.css("fontSize", parseInt(fonte) - 1); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var HTMLTagA= document.getElementsByTagName("a"); | |
var cnt= 0; | |
var i= 0; | |
var randon = 150; // Internavo Inicial | |
var TimerFunCall = setInterval(Timer, randon); | |
function Timer() { | |
if (i < HTMLTagA.length){ | |
if(HTMLTagA[i].outerHTML.contains('UFILikeLink')) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Subistitua o Número(88988459521) pelo seu número do WhatsApp | |
Siga este padrão: DDD + Numero, ex: 88 9 8845 9521 (Meu Número Whats) | |
--> | |
<a href="intent://send/88988459521#Intent;scheme=smsto;package=com.whatsapp;action=android.intent.action.SENDTO;end">Vamos Conversar?</a> | |
<!-- Mais Detalhes Aqui: https://lucianobragaweb.github.io/post/whatsapp-no-site/ --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Incluir na edição do tema Tumblr --> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script> | |
<script src="http://static.tumblr.com/fpifyru/VCxlv9xwi/writecapture.js"></script> | |
<script src="http://static.tumblr.com/fpifyru/AKFlv9zdu/embedgist.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (have_posts()) : while (have_posts()) : the_post(); | |
// verifica o formato do post para exibir | |
if(!get_post_format()) { // se não for definido um formato | |
get_template_part('loop'); // carrega o loop padrão | |
} else { // senão, ou seja, se for um formato diferente | |
get_template_part('loop', get_post_format()); // carrega o loop correspondente, ex: quote, status, etc... | |
} | |
endwhile; | |
endif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Adicionando suporte a Post Formats | |
$formatos = array( 'gallery', 'link', 'image', 'quote', 'video', 'audio', ); // definindo os formatos a serem suportados | |
// iplementando o suporte através da função add_theme_support();, passando a variável $suporte | |
add_theme_support( 'post-formats', $formatos ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Botão Continuar Comprando | |
Plugin URI: https://lucianobragaweb.github.io | |
Description: Redefine o link do botão [Continuar Comprando] | |
Version: 1.0 | |
Author: Luciano Braga | |
Author URI: https://lucianobragaweb.github.io | |
License: MIT | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0 |