- Documentação: https://developers.google.com/maps/documentation/static-maps/
- Centralizar: Centred Google Map image for use in a responsive environment – A Pen By DarrenGrant: https://codepen.io/DarrenGrant/pen/Hgsvl
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
<!-- 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(); |
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: 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 |
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
# 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 |
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
/* 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%; |
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
# 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 - |
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
/* | |
* Os valores têm de ser iguais. | |
* Fonte: http://jsfiddle.net/j7MEd/234/ | |
*/ | |
ul li, | |
ol li { | |
text-indent: -15px; | |
margin-left: 15px; | |
} |
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
<!-- 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/'); ?> |