Basta fazer um link com para whatsapp://send?text=TITULO – LINK, exemplo
:
<a href="whatsapp://send?text=TITULO – LINK" title="Acesse de seu smartphone para enviar por WhatsApp">WhatsApp</a>
TITULO
da páginaLINK
para a página
<!-- HTML --> | |
<meta http-equiv="refresh" content="0;url=http://url-de-destino.com/"> | |
<!-- JavaScript --> | |
<script language="javascript"> | |
window.location='http://url-de-destino.com/'; | |
</script> | |
<!-- PHP --> | |
<?php header('Location: http://url-de-destino.com/'); ?> |
/* | |
* Os valores têm de ser iguais. | |
* Fonte: http://jsfiddle.net/j7MEd/234/ | |
*/ | |
ul li, | |
ol li { | |
text-indent: -15px; | |
margin-left: 15px; | |
} |
# Fonte: http://dicas.obiz.com.br/artigo/como-criar-um-tar-multipart | |
# Fragmentar um tar muito grande pode ser muito útil para transferir arquivos com conexões caindo: | |
tar -cvf - meuarquivo.grande | split -b 10m - meuarquivo.tar | |
# Para juntar tudo e descompactar, use o comando seguinte: | |
cat meuarquivo.tar.* | tar xvf - |
/* Centralizar vertical e horizontal. Fonte: https://www.w3.org/Style/Examples/007/center.en.html#viewport3 */ | |
div.aviso { | |
background:#006600; | |
color:#FFFFFF; | |
border-radius:10px; | |
padding:10px; | |
position:absolute; | |
top:50%; | |
left:50%; | |
margin-right: -50%; |
# Fonte: https://unix.stackexchange.com/a/185765 | |
# du | |
# comando para estimar o espaço usado | |
# -s | |
# exibe apenas um total para cada argumento | |
# -h | |
# formato amigável (ex: 1K, 234M, 2G) | |
# -c | |
# total de mais de uma pasta/subpastas |
<?php | |
/* | |
* | |
* Plugin Name: Mensagens de erro de login | |
* Description: Mensagens aleatórios e personalizadas para tentativas fracassadas de login. | |
* Version: 1.1 | |
* Author: LFreitas based on Sergio Costa (zergiocosta) | |
* Text Domain: custom-error-msgs | |
* | |
* source: https://gist.github.com/zergiocosta/72f87176b236ed0c6e13 |
<!-- Compartilhamento em redes sociais --> | |
<!-- OPEN GRAPH --> | |
<?php | |
$img_compartilhe = get_post_meta($post->ID,'_thumbnail_id',false); | |
$img_compartilhe = wp_get_attachment_image_src($img_compartilhe[0], false); | |
$img_compartilhe = $img_compartilhe[0]; | |
$img_padrao = get_bloginfo('stylesheet_directory').'/SUAIMAGEM.jpg'; | |
// Recupera a URL da categoria | |
$the_cat = get_the_category(); |