This file contains 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 | |
if(isset($_POST['email'])) { | |
// EDIT THE 2 LINES BELOW AS REQUIRED | |
$email_to = "[email protected]"; | |
$email_subject = "Your email subject line"; | |
function died($error) { |
This file contains 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
#!/bin/bash | |
# Set WordPress permissions for localhost installations | |
# @param {string} $1 - directory to apply permission settings | |
# @example - $ wp_permissions wordpress/ | |
function wp_permissions() { | |
sudo chown -R :_www "$1" && sudo chmod -R g+w "$1" | |
} |
This file contains 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 | |
// Selects Custom Post Type Templates for single and archive pages | |
// ---------------------------------------------------------------------- | |
add_filter('template_include', 'custom_template_include'); | |
function custom_template_include($template) { | |
$custom_template_location = get_stylesheet_directory() . '/my-inc/my-templates/'; | |
if ( get_post_type () ) { | |
if ( is_archive() ) : | |
if( file_exists( $custom_template_location . 'archive-' . get_post_type() . '.php' )) | |
return $custom_template_location . 'archive-' . get_post_type() . '.php'; |
This file contains 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
/** | |
* Copyright (c) 2015 Matthew Zipay <[email protected]>. All rights reserved. | |
* Licensed under the MIT License <http://opensource.org/licenses/MIT>. | |
* | |
* The problem: | |
* You need to make a cross-domain request for JSON data, but the remote | |
* server doesn't send the necessary CORS headers, and it only supports | |
* simple JSON-over-HTTP GET requests (no JSONP support). | |
* | |
* One possible solution: |
$ git clone [email protected]:user/project.git
$ cd project
This file contains 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
source ~/.profile |
This file contains 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
# Redirect individual files | |
Redirect 301 /oldfile.html /newfile.html |