Skip to content

Instantly share code, notes, and snippets.

View fdaciuk's full-sized avatar
🔥

Fernando Daciuk fdaciuk

🔥
View GitHub Profile
@fdaciuk
fdaciuk / functions_windows.php
Created May 20, 2013 18:39
Função para incluir o index.php no home_url em servers Windows
<?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
@fdaciuk
fdaciuk / .htaccess
Created June 10, 2013 14:58
Padrão para sites institucionais em PHP
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]
@fdaciuk
fdaciuk / email-validate.js
Created June 21, 2013 17:12
Validação de e-mail com JS
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 }
}
@fdaciuk
fdaciuk / roles.php
Last active December 18, 2015 19:39
Separar roles wordpress
<?php
$result = count_users();
$subscribers;
$admin;
foreach($result['avail_roles'] as $role => $count) {
if( $role == 'administrator' )
$admin = $count;
if( $role == 'subscriber' )
$subscribers = $count;
@fdaciuk
fdaciuk / month-year-wp.php
Created July 4, 2013 19:07
Pegar posts separados por Ano / Mês no WordPress
<?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 ) {
@fdaciuk
fdaciuk / functions.php
Created July 28, 2013 19:43
Adicionar metaboxes a pages específicas no WP
<?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'];
@fdaciuk
fdaciuk / Adicionar novo campo (custom field) a uma taxonomia (categoria, tag, etc) no WordPress.md
Last active March 18, 2025 21:55
Adicionar novo campo (custom field) a uma taxonomia no WordPress (Incluir esse código no functions.php)Nas action_hooks, no lugar de "category" é só incluir o slug da sua taxonomia :)

Adicionar novo campo (custom field) a uma taxonomia (categoria, tag, etc) no WordPress

Incluir esse código no functions.php.

Nas action_hooks, no lugar de "category" é só incluir o slug da sua taxonomia :)

@fdaciuk
fdaciuk / Gruntfile.js
Created August 14, 2013 13:29
Gruntfile para rodar o beautiful-docs
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'
}
@fdaciuk
fdaciuk / carousel.js
Last active December 21, 2015 02:28
Carousel Usando jCarousel v3
@fdaciuk
fdaciuk / placeholder_polyfill.js
Created August 20, 2013 18:22
Polyfill para placeholder
$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(){