This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Disable Emojis | |
* Plugin URI: https://gist.github.com/chrisdavidmiles/7727d3c4b8b8967f87e6ff0338b8297c | |
* Description: Disable the automatic emoji replacement in post content and prevent the use of the s.w.org emoji cdn on the site. | |
* Author: Chris David Miles | |
* Version: 0.1 | |
*/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Auto Rename Uploads to Match Post Slug | |
* Plugin URI: https://gist.github.com/chrisdavidmiles/770ffbfe428b440fd007bcb6b08e94d7 | |
* Description: Uploads will be automatically renamed to match the post slug | |
* Author: Chris David Miles | |
* Version: 0.1 | |
*/ | |
function auto_rename_uploads_to_post_slug( $filename ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Require Auth | |
* Plugin URI: https://gist.github.com/chrisdavidmiles/01ad21767394d6b3770197667c32526a | |
* Description: Users must be logged in to WordPress to see site content. If a user is not authenticated, they will be redirected to the login screen. | |
* Author: Chris David Miles | |
* Version: 0.1 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) die; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Custom Uploads Directory By File Type | |
* Plugin URI: https://gist.github.com/chrisdavidmiles/a7f3fbf09616b4c445a45310c0f88e05 | |
* Description: This plugin automatically sorts uploads into a folder corresponding to their file type. Images go into <code>/img</code>, documents go into <code>/docs</code>, video goes into <code>/img</code>, and the rest goes into <code>/misc</code>. Note: This code doesn't work with 'browser uploader'. | |
* Author: Forked from Blaine Robison | |
* Author URI: https://gist.github.com/blainerobison/e802658da007e6e806b1 | |
* Version: 0.2 | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Automatically Set the Featured Image | |
* Plugin URI: https://gist.github.com/chrisdavidmiles/31fd0b6dfb4716ee9bfa34ca68b6cb57 | |
* Description: When a post is saved or updated, if a featured image is not set, the featured image will be set to the first image in the post. | |
* Author: Jonathan Dingman | |
* Author URI: https://web.archive.org/web/20170926163348/http://wpforce.com/automatically-set-the-featured-image-in-wordpress/ | |
* Version: 0.1 | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Remove Admin Email Verification | |
* Plugin URI: https://gist.github.com/chrisdavidmiles/94f58cc60fdb34d06a13f946f8ffd155 | |
* Description: Removes the step in /wp-login.php that occasionally asks to confirm if the email on file for a site is still correct. | |
* Version: 1.0 | |
* Requires at least: 5.3 | |
*/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
onelink.me/ | |
app.link/ | |
preview-domain.com/ | |
//1click.im/ | |
//1dl.us/ | |
//1o2.ir/ | |
//2tag.nl/ | |
//7.ly/ | |
//9en.us/ | |
//ad7.biz/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
<title>404 - Page Not Found</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> | |
<meta name="ROBOTS" content="NOINDEX,NOFOLLOW,NOARCHIVE" /> | |
<style type="text/css"> | |
<!-- | |
body { background-color: white; color: black; } | |
#container { width: 400px; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# 720p | |
# A utility for resizing windows from the command line on OSX. | |
# Taken from: https://lostechies.com/derickbailey/2012/09/08/screencasting-tip-resize-your-app-to-720p-1280x720-in-osx/ | |
# Archived copy: https://archive.is/5kr9m | |
# Archived code: https://gist.github.com/chrisdavidmiles/1b786c4ea62e1883ba31117ca357a838 | |
# | |
echo "Setting $1 bounds to 720p" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# A bash script to update a Cloudflare DNS A record with the external IP of the source machine | |
# | |
# Proxy - uncomment and provide details if using a proxy | |
#export https_proxy=http://<proxyuser>:<proxypassword>@<proxyip>:<proxyport> | |
# Cloudflare zone is the zone which holds the record | |
zone=example.com |