git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| </IfModule> | |
| RedirectMatch 301 ^/nba/.*$ http://oddsfather.com/ |
| <div class="control-group"> | |
| <label for="{pr_form_id}-date-of-birth">Date of Birth</label> | |
| <select id="{embed:form_prefix}-bday_d" name="bday_d" class="dob-day"> | |
| <option value="">Day</option> | |
| <?php for ($i=1; $i < 32; $i++) : ?> | |
| <option value="<?php echo $i ?>" | |
| <?php echo ($i == "{bday_d}") ? 'selected="selected"' : "" ?> | |
| > | |
| <?php echo $i ?></option> |
| <?php | |
| /** | |
| * Template for ordering custom post types by terms on | |
| * on the post types archive.php | |
| * | |
| * @package WordPress | |
| * @author Justin Kopepasah | |
| * | |
| */ |
| <?php | |
| /*-----------------------------------------------------------------------------------*/ | |
| /* Conditional Logic to Detect Various Event Related Views/Pages | |
| /*-----------------------------------------------------------------------------------*/ | |
| if( tribe_is_month() && !is_tax() ) { // Month View Page | |
| echo 'were on the month view page'; | |
| } elseif( tribe_is_month() && is_tax() ) { // Month View Category Page |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream