Skip to content

Instantly share code, notes, and snippets.

@font-face {
font-family: FontName;
src: url(http://www.your-site.com/wp-content/fonts/FontName-Regular.ttf);
font-weight: normal;
}
add_filter( 'auto_update_theme', '__return_true' );
add_filter( 'auto_update_plugin', '__return_true' );
@jennimckinnon
jennimckinnon / wp-config.php
Created May 8, 2016 11:08
Auto update WordPress core.
define('WP_AUTO_UPDATE_CORE', true);
define('WP_DEBUG_DISPLAY', false);
define('WP_DEBUG', false);
@jennimckinnon
jennimckinnon / wp-config.php
Created May 8, 2016 10:45
Force the use of SFTP in WordPress.
define('FS_METHOD', 'ssh2');
@jennimckinnon
jennimckinnon / wp-config.php
Created May 8, 2016 10:38
force FTPS in WordPress.
define('FTP_SSL', true);
<?php
define('ABSPATH', dirname(__FILE__) . '/');
require_once(ABSPATH . '../path/to/wp-config.php');
define('DISALLOW_FILE_EDIT', true);