Skip to content

Instantly share code, notes, and snippets.

@jordanmaslyn
jordanmaslyn / gist:2854905
Created June 1, 2012 20:20 — forked from hmert/slug.php
PHP: Create Slug Function
function create_slug($string){
$string = preg_replace( '/[«»""!?,.!@£$%^&*{};:()]+/', '', $string );
$string = strtolower($string);
$slug=preg_replace('/[^A-Za-z0-9-]+/', '-', $string);
return $slug;
}
@jordanmaslyn
jordanmaslyn / gist:2855137
Created June 1, 2012 21:02
CodeIgniter: New Controller
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Controllername extends CI_Controller {
public function __construct()
{
parent::__construct();
// Your own constructor code
}
@jordanmaslyn
jordanmaslyn / gist:2861878
Created June 3, 2012 04:25
CodeIgniter: .htaccess file (from CodeIgniter.tv)
<IfModule mod_rewrite.c>
# allow_override On
# mod_rewrite is installed
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
<IfModule mod_php5.c>
# Shell prompt based on the Solarized Dark theme.
# Screenshot: http://i.imgur.com/EkEtphC.png
# Heavily inspired by @necolas’s prompt: https://github.com/necolas/dotfiles
# iTerm → Profiles → Text → use 13pt Monaco with 1.1 vertical spacing.
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then
export TERM='gnome-256color';
elif infocmp xterm-256color >/dev/null 2>&1; then
export TERM='xterm-256color';
fi;
@jordanmaslyn
jordanmaslyn / .htaccess
Created December 23, 2015 22:17
Drop this in an .htaccess in your Wordpress uploads folder. It will check for the upload on your existing site, and if it doesn't find it there, will look for it on your live site.
# /wp-content/uploads/.htaccess
# Attempt to load files from production if they're not in our local version
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) http://www.LIVESITEURL.TLD/wp-content/uploads/$1
</IfModule>
@jordanmaslyn
jordanmaslyn / redirects.csv
Created January 8, 2016 17:11
Redirection CSV template
/culture /about-us/
/culture/team /about-us/team/
/culture/careers /about-us/careers/
/culture/awards /about-us/awards/
/About /about-us/
/about /about-us/
@jordanmaslyn
jordanmaslyn / redirects2.php
Last active January 8, 2016 18:11
PHP Redirects using the CSV plugin
<?php
// include this file in your root index.php file to load before Wordpress loads.
//
// Related Gists:
// CSV template: https://gist.github.com/jordanmaslyn/94d450814d921420408a
// Plugin code: https://gist.github.com/jordanmaslyn/fbbcc571e6717e66b880
//
// Make sure to replace THEME_NAME with your theme's actual name in the line below.
@jordanmaslyn
jordanmaslyn / redirects-admin.php
Created January 8, 2016 17:16
Redirection CSV Plugin
<?php
// include this in your theme's functions.php file
// Find & Replace all instances of 'prefix' and replace with the brand name.
// the file itself expects to be in /wp-content/themes/prefix/functions/modules/
add_action( 'admin_menu', 'prefix_redirects_admin_menu' );
function prefix_redirects_admin_menu() {
add_menu_page(
@jordanmaslyn
jordanmaslyn / redirects.php
Last active January 11, 2016 16:23
PHP Redirects to emulate .htaccess redirects on nginx
<?php
// include this file in your root index.php before any Wordpress files start getting pulled in.
// allow us to force garbage collection (for performance)
// commented out for now because it should be enabled by default. Going to test without it first.
// gc_enable(); // PHP >= 5.3.0
// old_path => new_path
// make sure all of your old_paths have no trailing slash
@jordanmaslyn
jordanmaslyn / gist:2861884
Created June 3, 2012 04:28
CodeIgniter: MY_Model
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class MY_Model extends CI_Model {
/**
* The database table to use.
* @var string
*/
public $table_name = '';