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 | |
function awi_autopopulate_workshop_title( $value ){ | |
$referer_id = url_to_postid( wp_get_referer() ); | |
$workshop_title = get_the_title( $referer_id ); | |
return $workshop_title; | |
} | |
add_filter( 'gform_field_value_workshop_title', 'awi_autopopulate_workshop_title' ); | |
// Usage: | |
// Add code to functions.php or similar |
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
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository | |
$ git ls-files | xargs wc -l |
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
// Reference: http://stackoverflow.com/questions/936249/stop-tracking-and-ignore-changes-to-a-file-in-git | |
$ git rm --cached -r <dir> |
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
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
// See also: http://www.paulund.co.uk/change-url-of-git-repository | |
$ cd $HOME/Code/repo-directory | |
$ git remote rename origin bitbucket | |
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
$ git push origin master | |
$ git remote rm bitbucket |
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
pbpaste | highlight -S css -O rtf --style moria | pbcopy |
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 | |
/** | |
* Customize excerpt length and style. | |
* | |
* @param string The raw post content. | |
* @return string | |
*/ | |
function red_wp_trim_excerpt( $text ) { | |
$raw_excerpt = $text; | |
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 | |
/** | |
* Customize the Product archive title | |
*/ | |
function red_archive_title( $title ) { | |
if ( is_post_type_archive( 'product' ) ) { | |
$title = 'Our Products Are Made Fresh Daily'; | |
} elseif ( is_tax( 'product-type' ) ) { | |
$title = sprintf( '%1$s', single_term_title( '', false ) ); | |
} elseif ( is_post_type_archive( 'testimonial' ) ) { |
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 | |
/** | |
* Plugin Name: Hide Default Posts | |
* Plugin URI: https://gist.github.com/mandiwise/2ea571ae0773b340af5a | |
* Description: Hide post-related screens in the WP admin area, including Categories and Tags. | |
* Version: 1.0.0 | |
* Author: Mandi Wise | |
* Author URI: http://mandiwise.com | |
* License: GPL-2.0+ | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
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
txtcyn=$'\e[0;36m' # Cyan | |
txtred=$'\e[0;31m' # Red | |
txtwht=$'\e[0;37m' # White | |
txtrst=$'\e[0m' # Text Reset | |
function parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
export PS1="\u@\h \W\[$txtcyn\]\$(parse_git_branch) \[$txtrst\]\$ " # fancify Terminal prompt |