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
<style> | |
.scree_grid:after { | |
content: ''; | |
display: block; | |
clear: both; | |
} | |
.grid_sizer, | |
.grid_item { | |
width: calc(33.333% - 20px); |
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
////////////////////////////////////// | |
// ENABLE SHORTCODES IN TEXT WIDGET // | |
////////////////////////////////////// | |
add_filter('widget_text','do_shortcode'); |
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
///////////////////////// | |
// REMOVE PASSWORD NAG // | |
///////////////////////// | |
remove_action('admin_notices','default_password_nag'); |
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
////////////////////////////// | |
// COPYRIGHT YEAR SHORTCODE // | |
////////////////////////////// | |
function copyrightYear(){ | |
return date('Y'); | |
} | |
add_shortcode('copyYear', 'copyrightYear'); |
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
///////////////////////// | |
// ADD THUMBNAIL SIZES // | |
///////////////////////// | |
add_image_size( 'facebook', 476, 249 ); // width x height |
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
/////////////////////////////// | |
// REMOVE TOOLSET INFOWINDOW // | |
/////////////////////////////// | |
function remove_types_info_box() { | |
return false; | |
} | |
add_filter( 'types_information_table', 'remove_types_info_box' ); |
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
////////////////////// | |
// DASHBOARD STYLES // | |
////////////////////// | |
function dashboard_custom_css() { | |
wp_enqueue_style('dashboard-style', get_stylesheet_directory_uri() . '/css/dashboard.css'); | |
} | |
add_action('admin_head', 'dashboard_custom_css'); |
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
/////////////////////////// | |
// CUSTOM EXCERPT LENGTH // | |
/////////////////////////// | |
function custom_excerpt_length($length) { | |
return 40; | |
} | |
add_filter('excerpt_length', 'custom_excerpt_length'); |