Skip to content

Instantly share code, notes, and snippets.

View pwenzel's full-sized avatar

Paul Wenzel pwenzel

View GitHub Profile
@pwenzel
pwenzel / wpengine_cdn_url.php
Created March 27, 2013 16:36
Get WPEngine CDN URL for your blog.
<?php
if (class_exists('WpeCommon')){
$wpe_common = new WpeCommon();
$cdn_url = $wpe_common->get_cdn_domain($wpe_netdna_domains,get_bloginfo( 'url' ) );
}
@pwenzel
pwenzel / README.md
Last active December 14, 2015 20:28
Set site/plugin options for all blogs in a network [WordPress Multisite] [WordPress]

Set options for all the blogs on a WordPress Multisite installation

@pwenzel
pwenzel / Makefile
Created March 2, 2013 19:48
Wordpress Project Makefile
.PHONY: install
install: clean wordpress
git submodule init;
@echo "\n\nNOTICE: You may need to configure a MySQL database for your Wordpress installation. Just run:"
@echo " mysql -u root -p;"
@echo " CREATE DATABASE example_site; \n"
wordpress: latest.tar.gz
tar -zxvf latest.tar.gz;
@pwenzel
pwenzel / google-maps-oembed-wordpress.php
Created February 1, 2013 22:45
Faux Google Maps oEmbed for Wordpress
<?php
/* Faux Google Maps oEmbed
* Embed google maps in a nicer iframe without using their provided embed code
* @usage Paste a Google Maps link in your post and it will be replaced with an iframe when published
* @link http://bigsaturday.net/oembed-google-maps-wordpress/
*/
wp_embed_register_handler( 'google_map', '#https://maps\.google\.com/maps(.*)#i', 'embed_google_map' );
function embed_google_map( $matches ) {
$query = parse_url($matches[0]);
@pwenzel
pwenzel / get_the_current_url.php
Last active June 30, 2018 06:26
Get Current URL with PHP. Inspired by CodeIgniter. Tested with Wordpress with and without fancy permalinks.
<?php
function get_the_current_url() {
$protocol = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http");
$base_url = $protocol . "://" . $_SERVER['HTTP_HOST'];
$complete_url = $base_url . $_SERVER["REQUEST_URI"];
return $complete_url;
@pwenzel
pwenzel / ps1-color.bash
Created December 21, 2012 20:53
Set terminal colour based on local or remote session
# This sets the highlight colour based upon whether you're remote or local.
export PS1="\[${HC}\033]0;\u@\h: \w\[\007\]\[${cyan}\]\u\[${HC}\]@\h: \w \[${cyan}\]\$ \[${NC}\]"
@pwenzel
pwenzel / wordpress-cache-control.php
Created December 17, 2012 21:21
Make Cloudflare cache Wordpress pages for 5 minutes
<?php
if(!is_404()) {
// Set caching headers (cache for 5 minutes)
header('Cache-Control: max-age=300, must-revalidate');
header('Expires: '.gmdate('D, d M Y H:i:s', strtotime('+5 minutes')).' GMT');
}
@pwenzel
pwenzel / post-commit.sh
Created December 17, 2012 16:58
Echo current git revision to VERSION file on post-commit
#!/bin/sh
PROJECTPATH=$(git rev-parse --show-toplevel)
echo $(git rev-parse --short HEAD) > $PROJECTPATH/VERSION
@pwenzel
pwenzel / perpetual-rsync.sh
Created December 1, 2012 15:15
Automatically resume rsync over SSH after broken connection
#!/bin/bash
while [ 1 ]
do
rsync -avz --partial source dest
if [ "$?" = "0" ] ; then
echo "rsync completed normally"
exit
else
echo "Rsync failure. Backing off and retrying..."
@pwenzel
pwenzel / post-receive.sh
Created November 25, 2012 20:13
Git Post Receive Deployment Hook (pulls latest, then saves deployment log and current version to file)
#!/bin/sh
cd /path/to/project/ || exit
unset GIT_DIR
LOGFILE=deployments.log
echo $(date) >> $LOGFILE
git pull origin master >> $LOGFILE
git update-server-info
echo $(git rev-parse --short HEAD) > VERSION