Skip to content

Instantly share code, notes, and snippets.

error_reporting(0);
@ini_set(‘display_errors’, 0);
define( 'DISALLOW_FILE_EDIT', true );
add_filter( 'auto_update_theme', '__return_true' );
add_filter( 'auto_update_plugin', '__return_true' );
@digitalinkwell
digitalinkwell / enable-core-auto-updates.php
Created July 29, 2015 18:34
enable-core-auto-updates
# Enable all core updates, including minor and major:
define( 'WP_AUTO_UPDATE_CORE', true );
add_action( 'wp_dashboard_setup', 'register_my_dashboard_widget' );
function register_my_dashboard_widget() {
wp_add_dashboard_widget(
'my_dashboard_widget',
'My Dashboard Widget',
'my_dashboard_widget_display'
);
}
add_filter('gettext', 'change_howdy', 10, 3);
function change_howdy($translated, $text, $domain) {
if (!is_admin() || 'default' != $domain)
return $translated;
if (false !== strpos($translated, 'Howdy'))
return str_replace('Howdy', 'Welcome', $translated);
@digitalinkwell
digitalinkwell / simpleweathercss
Created April 16, 2015 05:59
simpleweathercss
#weather2 {
background: #6f9dbe;
background: -webkit-gradient(linear, left top, left bottom, from(#adc7db), to(#6f9dbe));
background: -moz-linear-gradient(top, #b2bcc8, #adc7db);
width: 185px;
padding: 5px 10px;
overflow: hidden;
border: 1px solid #6591b3;
}