Skip to content

Instantly share code, notes, and snippets.

View alandbh's full-sized avatar

Alan Vasconcelos alandbh

View GitHub Profile
@alandbh
alandbh / image-sizes.php
Created February 23, 2016 18:35
Altera / configura o tamanho das imagens
/* ----------------
Altera os tamanhos de imagens
Alan
----------------- */
function novos_tamanhos() {
add_image_size( 'banner', 824, 400, true );
add_image_size( 'noticias-grande', 720, 345, true );
@alandbh
alandbh / page-by-name
Created February 23, 2016 18:34
Pega a URL da página pelo nome
/* ----------------
Pega a URL da página pelo nome
Alan
----------------- */
function page_url($title) {
echo get_permalink( get_page_by_title( $title ) );
}
@alandbh
alandbh / wp_role-clone.php
Last active February 23, 2016 18:47
Copia ou clona um role user para um novo
/* ----------------
Copia / clona um role user para um novo
----------------- */
add_action('init', 'cloneRole');
function cloneRole()
{
@alandbh
alandbh / 0_reuse_code.js
Created February 23, 2016 18:22
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console