This file contains hidden or 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 | |
/** | |
* Generate WordPress Pages | |
* @example: taw_generate_pages('page one', 'Page Two', 'page-three'); | |
*/ | |
function taw_generate_pages($names) { | |
if (!$names) { return false; } | |
$list = func_get_args(); | |
foreach ($list as $item) { |
This file contains hidden or 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
# TAW Bash Profile | |
# @author: Travis A. Wagner | |
# @website: http://travisawagner.com | |
# -- BASE --# | |
# Set default blocksize for ls, df, du | |
# http://hints.macworld.com/comment.php?mode=view&cid=24491 | |
export BLOCKSIZE=1k |
NewerOlder