Skip to content

Instantly share code, notes, and snippets.

order allow,deny
deny from 456.123.8.9
allow from all
<Files wp-login.php>
order deny,allow
Deny from all
# allow access from my IP address
allow from 192.168.5.1
</Files>
order deny,allow
allow from 192.168.5.1
deny from all
add_filter( 'auto_update_theme', '__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'
);
}
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js" charset="utf-8"></script>
<script src="<?php echo esc_url( home_url( '/' ) ); ?>/jquery.simpleWeather.js" charset="utf-8"></script>
<script type="text/javascript">
$(function() {
$.simpleWeather({
location: 'london, united kingdom',
unit: 'c',
success: function(weather) {
html = '<h2>'+weather.city+', '+weather.region+'</h2>';