This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
Sass | |
SideBarEnhancements | |
suublime-expand-selection-to-quotes | |
sublime code intel | |
MarkdownEditing | |
Origmai | |
HTML5 | |
Javasrcript ES6 sytanx | |
Jquery | |
JSHint Gutter |
* { | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} |
{ | |
"auto_complete": true, | |
"auto_indent": true, | |
"bold_folder_labels": true, | |
"caret_extra_bottom": 2, | |
"caret_extra_top": 2, | |
"color_scheme": "Packages/User/predawn (SL).tmTheme", | |
"detect_slow_plugins": false, | |
"dictionary": "Packages/Language - English/en_GB.dic", | |
"draw_white_space": "selection", |
{ | |
"auto_complete": true, | |
"auto_indent": true, | |
"bold_folder_labels": true, | |
"theme": "predawn.sublime-theme", | |
"color_scheme": "Packages/Predawn/predawn.tmTheme", | |
"detect_slow_plugins": false, | |
"dictionary": "Packages/Language - English/en_GB.dic", | |
"draw_white_space": "selection", | |
"file_exclude_patterns": |
var gulp = require('gulp'), | |
gutil = require('gulp-util'), | |
humans = require('humans-generator'); | |
gulp.task('humans', function() { | |
humans({ | |
'team': { | |
'Hayden Bleasel': { | |
'Twitter': '@haydenbleasel', | |
'Email': '[email protected]', |
sudo ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/ |
//hide theme editor from WordPress dashboard | |
function wpr_remove_editor_menu() { | |
remove_action('admin_menu', '_add_themes_utility_last', 101); | |
} |
register_sidebar( array( | |
'name' => 'new-text-widget-name', | |
'id' => 'left-sidebar', | |
'before_widget' => '<div id="%1$s" class="%2$s widget">', | |
'after_widget' => '</div>', |