This file contains hidden or 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
/* ---------------- | |
Altera os tamanhos de imagens | |
Alan | |
----------------- */ | |
function novos_tamanhos() { | |
add_image_size( 'banner', 824, 400, true ); | |
add_image_size( 'noticias-grande', 720, 345, true ); |
This file contains hidden or 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
/* ---------------- | |
Pega a URL da página pelo nome | |
Alan | |
----------------- */ | |
function page_url($title) { | |
echo get_permalink( get_page_by_title( $title ) ); | |
} |
This file contains hidden or 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
/* ---------------- | |
Copia / clona um role user para um novo | |
----------------- */ | |
add_action('init', 'cloneRole'); | |
function cloneRole() | |
{ |
This file contains hidden or 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
NewerOlder