Skip to content

Instantly share code, notes, and snippets.

View larbous's full-sized avatar

Luiz Sobral larbous

View GitHub Profile
@larbous
larbous / wp-config.php
Created May 31, 2023 17:12
Limitando as revisões de post
Coloque o código abaixo no arquivo wp-config.php na raiz da instalação do WordPress
// Desabilitar as revisões do post
// insert above the ‘ABSPATH’ otherwise it won’t work
define('AUTOSAVE_INTERVAL', 300); // seconds
define('WP_POST_REVISIONS', 3); // true ou false qualquer número de revisões
@larbous
larbous / validatorCNH.js
Last active January 13, 2023 13:01 — forked from danielnass/gist:d41d47a9b6e05918a56c
jQuery Validation Additional Method CNH - Carteira Nacional de Habilitação - Carteira de Motorista
$.validator.addMethod('CNH', function(value, element) {
var ret,
cnh = value,
firstChar = cnh.charAt(0);
if (cnh.replace(/[^\d]/g, '').length === 11 && firstChar.repeat(11) !== cnh) {
var dsc = 0;
for (var i = 0, j = 9, v = 0; i < 9; ++i, --j) {
@larbous
larbous / Validate_cpf_cnpj
Last active January 13, 2023 11:10 — forked from fjcunha/Validate_cpf_cnpj
jQuery validator methods to validate cpf and cnpj
jQuery.validator.addMethod("cnpj", function (value, element) {
var numeros, digitos, soma, i, resultado, pos, tamanho, digitos_iguais;
if (value.length == 0) {
return false;
}
value = value.replace(/\D+/g, '');
digitos_iguais = 1;
@larbous
larbous / estados_brasileiros_com_pipe.txt
Last active July 26, 2021 18:59
Estados Brasileiros com UF e título separados por pipe para uso no form do Elementor Pro
Ordem: UF->Estado
AC|Acre
AL|Alagoas
AM|Amazonas
AP|Amapá
BA|Bahia
CE|Ceará
DF|Distrito Federal