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 $konami = $('#konami'), | |
$all = $('#all'), | |
$msg = $('#msg'), | |
keyCode, | |
konami_code = [38, 38, 40, 40, 37, 39, 37, 39, 66, 65], | |
konami_code_count = konami_code.length - 1, | |
cont = 0; | |
$(document).on('keydown', function(e) { | |
keyCode = e.keyCode || e.which; |
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 | |
function custom_search_where($where) { | |
// put the custom fields into an array | |
$customs = array('custom_field1', 'custom_field2', 'custom_field3'); | |
foreach($customs as $custom) { | |
$query .= " OR ("; | |
$query .= "(m.meta_key = '$custom')"; | |
$query .= " AND (m.meta_value LIKE '{$n}{$term}{$n}')"; | |
$query .= ")"; |
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
/** | |
* @param username - (required) O nome de usuário ou da página que você quer que retorne os dados | |
* @param data - (return) Retorno da função com os dados do usuário ou página do Facebook | |
* | |
*/ | |
$.ajax({ | |
url : 'http://graph.facebook.com/'+ username +'?callback=?', | |
dataType : 'jsonp', | |
success : function( data ) { |
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
Show hidden characters
{ | |
"curly": true, | |
"eqeqeq": true, | |
"immed": true, | |
"latedef": true, | |
"newcap": true, | |
"noarg": true, | |
"sub": true, | |
"undef": true, | |
"boss": true, |
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 | |
$pages = array( 'sobre', 'contato' ); | |
// Verificar se a URL acessada consta no array. | |
if( in_array( get_query_var( 'pagename' ), $pages ) ) { | |
header( 'HTTP/1.1 200 OK' ); | |
get_template_part( 'page-' . get_query_var( 'pagename' ) ); | |
die(); | |
} else { |
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() { | |
// Somente números | |
$( 'input.numero' ).on( 'keydown', function(e) { | |
var keyCode = e.keyCode || e.which, | |
pattern = /\d/, | |
// Permite somente Backspace, Delete e as setas direita e esquerda, números do teclado numérico - 96 a 105 - (além dos números) | |
keys = [ 46, 8, 9, 37, 39, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105 ]; | |
if( ! pattern.test( String.fromCharCode( keyCode ) ) && $.inArray( keyCode, keys ) === -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
jQuery(function($) { | |
var $map = $( '#map-canvas' ), | |
address = $map.data( 'address' ), | |
lat, lng, | |
map_options = {}, | |
map, marker; | |
$.ajax({ | |
url : 'http://maps.googleapis.com/maps/api/geocode/json', | |
dataType : 'json', |
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 | |
function enqueue_scripts() { | |
wp_enqueue_script( 'jquery-ui-core' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'enqueue_scripts' ); |
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 | |
/* | |
Use para chamar qualquer arquivo dentro do tema. | |
Ex: echo theme_url( 'assets/images/logo.png' ); | |
*/ | |
function theme_url( $path = null ) { | |
return get_template_directory_uri() . '/' . $path; | |
} |
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 app = angular.module('myApp', []); | |
app.config(['$locationProvider', '$routeProvider', function( $locationProvider, $routeProvider ) { | |
$locationProvider.html5Mode( true ); | |
$routeProvider | |
.when('/', { controller : 'controller', templateUrl : 'views/home.html' }) | |
.when('/empresa', { controller : 'controller', templateUrl : 'views/register-company.html' }) | |
.when('/profissional', { controller : 'controller', templateUrl : 'views/register-professional.html' }) | |
.otherwise({ redirectTo : 'views/404.html' }); |