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
<?php | |
/** | |
* Get related menu | |
* | |
* Displays immediate children or siblings | |
* | |
* @param boolean $echo echo or return result | |
* @return str $r | |
*/ | |
function prefix_related_menu( $echo = 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
<?php | |
/** | |
* Local / Staging Environment | |
* | |
* Used in conjunction with mu-plugins/disable-plugins-dev-environment.php | |
* Disables plugins specified in plugin file | |
* | |
* SET TO FALSE ON PRODUCTION | |
*/ |
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
{ | |
"overlay_scroll_bars": "enabled", | |
"line_padding_top": 3, | |
"line_padding_bottom": 3, | |
"always_show_minimap_viewport": true, | |
"font_options": [ "gray_antialias" ], | |
"bold_folder_labels": true, | |
"caret_extra_width": 2, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker-OceanicNext.tmTheme", |
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
/** | |
* Order Admin Menu Items | |
*/ | |
function custom_menu_order( $menu_ord ) { | |
if ( ! $menu_ord ) { | |
return true; | |
} | |
return array( |
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
var resizeTimer; | |
// foo | |
function foo() { | |
console.log( 'delayed' ); | |
} | |
// initially run foo | |
foo(); |
NewerOlder