- ACF Pro
- Contact Form 7
- Custom Post Type UI
- Google Analytics Dashboar for WP
- Nested Pages
- Snazzy Maps
- Yoast SEO
- WP Smushit
- WP Super Cache
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
$('.panel-collapse').on('show.bs.collapse', function () { | |
$(this).siblings('.panel-heading').addClass('active'); | |
}); | |
$('.panel-collapse').on('hide.bs.collapse', function () { | |
$(this).siblings('.panel-heading').removeClass('active'); | |
}); |
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
# Global | |
._* | |
*.log | |
.AppleDouble | |
.DS_Store | |
.localized | |
.LSOverride | |
.Spotlight-V100 | |
.Trashes | |
Icon |
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
$(document).ready(function(){ | |
// Event Click in whatever tag HTML | |
$( '#section' ).click(function(event){ | |
event.stopPropagation(); | |
$( '.button' ).toggleClass('open'); | |
}); | |
// Function click out and close function up | |
$( document ).click( function() { | |
var btn = $( '.button' ); |
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 | |
/** | |
* Espeficicar por padrão. | |
*/ | |
if( $post->post_parent !== 0 ) { | |
get_template_part('page', 'child'); | |
} else { | |
get_template_part('page', 'default'); | |
} | |
?> |
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
.wpcf7-checkbox, .radio { | |
display: block; | |
margin: 10px 0 0; | |
.wpcf7-list-item { | |
display: block; | |
input[type=checkbox], input[type=radio] { | |
display: none; |
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
body input[type=text].wpcf7-not-valid, | |
body input[type=email].wpcf7-not-valid, | |
body input[type=tel].wpcf7-not-valid, | |
body textarea.wpcf7-not-valid { | |
border: 1px solid #ec3c06; | |
} | |
body span.wpcf7-not-valid-tip { | |
background: none; | |
border: none; |
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 | |
// Popup Maker - https://wordpress.org/plugins/popup-maker/ | |
function mycustom_popup_is_loadable( $is_loadable, $popup_id) { | |
if( $popup_id == 80 ) { // ID do Post | |
$start = strtotime( '2015-11-23 14:00:00' ); // Data de Início | |
$end = strtotime( '2015-11-26 23:59:00' ); // Data do Término | |
$now = strtotime( 'now' ); | |
if( $now >= $start && $now <= $end ) { |
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
# Primeiro crie um repositorio Local. | |
$ git init | |
Initialized empty Git repository in C:\Projetos\site\.git | |
$ cat ' ' > index.html | |
$ git add index.html | |
$ git commit -q -m "Iniciando o repositório" | |
# No Servidor | |
# Crie Repositorio Vazio | |
$ mkdir site.git && cd site.git |
NewerOlder