This file contains 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
/* Modal */ | |
.reports-modal{ | |
position: absolute; | |
width: 80%; | |
min-height: 400px; | |
height: auto; | |
z-index: 1900; | |
background-color: #fff; | |
padding: 0.75rem; | |
border-top: 4px solid #1c5690; |
This file contains 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
#define GIT_COLOR_NORMAL "" | |
#define GIT_COLOR_RESET "\033[m" | |
#define GIT_COLOR_BOLD "\033[1m" | |
#define GIT_COLOR_RED "\033[31m" | |
#define GIT_COLOR_GREEN "\033[32m" | |
#define GIT_COLOR_YELLOW "\033[33m" | |
#define GIT_COLOR_BLUE "\033[34m" | |
#define GIT_COLOR_MAGENTA "\033[35m" | |
#define GIT_COLOR_CYAN "\033[36m" | |
#define GIT_COLOR_BOLD_RED "\033[1;31m" |
This file contains 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
<?php | |
/** | |
* Soma um ou mais horários no formato 00:00 | |
* | |
* @link https://vijayasankarn.wordpress.com/2016/12/27/sum-n-times-php/ | |
* | |
* @param array $times Lista de horários para somar | |
* @return string | |
*/ | |
function increment_time(array $times) |
This file contains 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
<?php | |
$args = [ | |
'post_type' => 'events', | |
'posts_per_page' => -1, | |
'post_status' => 'publish', | |
'tax_query' => [ | |
[ | |
'taxonomy' => 'event_terms', | |
'field' => 'slug', | |
'terms' => 'event_past', |
This file contains 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
if( !function_exists( 'the_file_size' ) ) { | |
/** | |
* | |
* WordPress function for get file size in attachment | |
* | |
* @author Everaldo Matias | |
* @link https://everaldo.dev | |
* | |
* @version 1.0 |
This file contains 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
if ( ! function_exists( 'auto_create_category' ) ) { | |
/** | |
* | |
* Create category with specific CPT is create or updated | |
* | |
* @author Everaldo Matias | |
* @link https://everaldo.dev | |
* | |
* @version 1.0 |
This file contains 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
<?php | |
/** | |
* | |
* Config, Panels, Sections and Fields by Kirki | |
* | |
* @link https://kirki.org/ | |
* @author Everaldo Matias <https://everaldo.dev> | |
* @since 16/01/2020 | |
* @version 1.0 |
This file contains 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
<?php | |
/** | |
* | |
* Função para remover um stylesheet do WordPress. | |
* Por padrão o WordPress imprime o ID do style na tag <link> com um sufixo -css, exemplo 'theme-media-css', nesse caso o ID é apenas 'theme-media' | |
* | |
* @author Everaldo Matias <https://everaldo.dev> | |
* @uses Aplique no functions.php do seu tema (ou plugin) | |
* @since 20191022 |
This file contains 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
<?php | |
[ | |
'name' => __( '', '' ), | |
'singular_name' => __( '', '' ), | |
'add_new' => __( '', '' ), | |
'add_new_item' => __( '', '' ), | |
'edit_item' => __( '', '' ), | |
'new_item' => __( '', '' ), | |
'view_item' => __( '', '' ), | |
'view_items' => __( '', '' ), |
This file contains 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
<?php | |
/** | |
* Add virtual page on WordPress hierarchy | |
* @link https://metabox.io/how-to-create-a-virtual-page-in-wordpress/ | |
*/ | |
add_filter( 'generate_rewrite_rules', function ( $wp_rewrite ){ | |
$wp_rewrite->rules = array_merge( | |
['example/(\w+)/?$' => 'index.php?exp=$matches[1]'], |