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
# COMMUNITY PROJECT GITIGNORE # | |
# Ignore OS files # | |
# =============== # | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db |
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
RENAME table `wp_commentmeta` TO `NEWPREFIX_commentmeta`; | |
RENAME table `wp_comments` TO `NEWPREFIX_comments`; | |
RENAME table `wp_links` TO `NEWPREFIX_links`; | |
RENAME table `wp_options` TO `NEWPREFIX_options`; | |
RENAME table `wp_postmeta` TO `NEWPREFIX_postmeta`; | |
RENAME table `wp_posts` TO `NEWPREFIX_posts`; | |
RENAME table `wp_terms` TO `NEWPREFIX_terms`; | |
RENAME table `wp_termmeta` TO `NEWPREFIX_termmeta`; | |
RENAME table `wp_term_relationships` TO `NEWPREFIX_term_relationships`; | |
RENAME table `wp_term_taxonomy` TO `NEWPREFIX_term_taxonomy`; |
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 |
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
<?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 | |
/** | |
* 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
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
// 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
// Reference: http://stackoverflow.com/questions/936249/stop-tracking-and-ignore-changes-to-a-file-in-git | |
$ git rm --cached -r <dir> |