Incluir esse código no functions.php
.
Nas action_hooks, no lugar de "category"
é só incluir o slug da sua taxonomia :)
<?php | |
/*-------------------------------------------------------------------------------------- | |
* | |
* @name: my_home_url | |
* @description: Modificar home_url para Windows | |
* @author: Volts Digital | |
* | |
*-------------------------------------------------------------------------------------*/ | |
function my_home_url( $url ) { | |
$other_url = explode( '://', $url ); // quebra em http e restante do site |
RewriteEngine On | |
# URLs Amigaveis | |
RewriteRule ^(sobre|produtos|contato)/?$ ?p=$1 | |
# Erro 404 | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{SCRIPT_FILENAME} !\.(jpg|png|gif) | |
RewriteRule ^(.*)$ ?p=404 [L] |
function is_email( email ) { | |
var exclude = /[^@\-\.\w]|^[_@\.\-]|[\._\-]{2}|[@\.]{2}|(@)[^@]*\1/; | |
var check = /@[\w\-]+\./; | |
var checkend = /\.[a-zA-Z]{2,3}$/; | |
if( ( ( email.search( exclude ) != -1 )||( email.search( check ) ) == -1 )||( email.search( checkend ) == -1 ) ) { return false } | |
else { return true } | |
} |
<?php | |
$result = count_users(); | |
$subscribers; | |
$admin; | |
foreach($result['avail_roles'] as $role => $count) { | |
if( $role == 'administrator' ) | |
$admin = $count; | |
if( $role == 'subscriber' ) | |
$subscribers = $count; |
<?php | |
// Meses | |
$mes = array( '', 'Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro' ); | |
$years = $wpdb->get_col( "SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post' ORDER BY post_date DESC" ); | |
foreach( $years as $year ) { | |
$months = $wpdb->get_col( "SELECT DISTINCT MONTH(post_date) FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post' AND YEAR(post_date) = '" . $year . "' ORDER BY post_date DESC" ); | |
foreach( $months as $key => $month ) { |
<?php | |
/* | |
Adicionar metabox à páginas específicas | |
*/ | |
function my_meta_setup_1() { | |
// criação da metabox | |
} | |
function especific_metabox_pages() { | |
$post_ID = $_GET['post'] ? $_GET['post'] : $_POST['post_ID']; |
module.exports = function( grunt ) { | |
grunt.initConfig({ | |
coffee : { | |
compile : { | |
files : { | |
'lib/command.js' : 'src/command.coffee', | |
'lib/generator.js' : 'src/generator.coffee', | |
'lib/index.js' : 'src/index.coffee', | |
'lib/manifest.js' : 'src/manifest.js' | |
} |
/* | |
Scripts usados nessa página | |
Índice de funções para esse arquivo: | |
* carousel.init(); | |
* carousel.init_events(); | |
*/ | |
var carousel; |
$formLogin = $( 'form.form-login' ); | |
$formLogin.find( 'label' ).addClass( 'js' ); | |
$formLogin.find( 'input[type=text], input[type=password]' ).each(function(){ | |
// Verifica se os campos estão preenchidos (autocompletar do browser) | |
if( $( this ).val() !== '' ) { | |
$( this ).prev( 'label' ).animate({'font-size' : 0}, 200); | |
} | |
$( this ).focus(function(){ |