Skip to content

Instantly share code, notes, and snippets.

View zacscott's full-sized avatar

Zac Scott zacscott

View GitHub Profile
@zacscott
zacscott / maintenance-mode.php
Last active March 11, 2017 11:07
Disables the WP during maintenance / updates
<?php
/**
* Plugin Name: Maintenance Mode
* Description: Disables the WP during maintenance / updates
* Version: 1.1
* Author: Zachary Scott
*/
namespace zacscott;
@zacscott
zacscott / force-lowercase-urls.php
Last active March 11, 2017 11:08
Forces all WordPress lowercase URLs
<?php
/**
* Plugin Name: Force Lowercase URLs
* Description: Forces all lowercase URLs
* Version: 1.0
* Author: Zachary Scott
*/
if( ! is_admin() ){
@zacscott
zacscott / disable-yoast-nags.php
Last active January 17, 2023 09:51
Hides all Yoast premium nags in the backend
<?php
/**
* Plugin Name: Disable Yoast Nags
* Description: Hides all Yoast premium nags in the backend.
* Version: 1.0
* Author: Zachary Scott
*/
namespace zacscott;
@zacscott
zacscott / disable-https.php
Last active March 11, 2017 11:08
Disable HTTPS in for WordPress
<?php
/**
* Plugin Name: Disable HTTPS
* Description: Disables HTTPS in WordPress
* Version: 1.0
* Author: Zachary Scott
*/
namespace zacscott;
@zacscott
zacscott / disable-nags.php
Last active March 11, 2017 11:08
Disable Nags - WordPress plugin
<?php
/**
* Plugin Name: Disable Nags
* Description: Disables the WP core update nags in the backend on production
* Version: 1.1
* Author: Zachary Scott
*/
namespace zacscott;
@zacscott
zacscott / relative-links.php
Last active March 11, 2017 11:08
Relative Links - WordPress plugin
@zacscott
zacscott / cache-helper.php
Last active March 11, 2017 11:08
Caching helper class for WordPress (can be used as a mu-plugin)
<?php
/*
* Plugin Name: Cache Helper
* Description: CacheHelper class provider plugin
* Version: 1.0
* Author: Zachary Scott
*/
namespace zacscott;
@zacscott
zacscott / fragment-cache.php
Last active March 11, 2017 11:08
Fragment caching utility class for WordPress. Based off; https://gist.github.com/markjaquith/2653957
<?php
/*
* Plugin Name: Fragment Cache
* Description: Fragment cache provider plugin
* Version: 1.2
* Author: Zachary Scott
*/
namespace zacscott;
@zacscott
zacscott / example.php
Last active March 11, 2017 11:09
Settings builder utility for WordPress (can be used as a mu-plugin)
<?php
add_action( 'plugins_loaded', function() {
$settings = new zacscott\SettingsBuilder();
$settings->page( array(
'title' => 'TEST ',
'menu' => 'Test Settings',
) );
@zacscott
zacscott / notes.php
Last active March 11, 2017 11:09
Notes - WordPress Plugin
<?php
/**
* Plugin Name: Notes
* Description: Keep private notes within WordPress
* Version: 1.0
* Author: Zachary Scott
* Author URI: https://www.zacscott.net
* Plugin URI: https://gist.github.com/zacscott/b4cbacf5a0825a270a28
* License: GPLv3+
*/