create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |
| <?php | |
| $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; //this line only needed for pagination | |
| $args = array( | |
| 'cat' => 7, | |
| 'paged' => $paged //this line only needed for pagination | |
| ); | |
| // The Query | |
| $the_query = new WP_Query( $args ); | |
| // The Loop |
| <?php | |
| /* | |
| INSTRUCTIONS: | |
| Use at your own risk. Backup your database before continuing. | |
| 1. Copy code to a file in the root of your website. | |
| 2. Change YOUR_SITE_ROOT to a value that makes sense. | |
| 3. Execute by visiting the page. Verify before/after results. | |
| 4. Change MAKE_CHANGES_TO_SITE to true and execute it again. |
| <?php | |
| /** | |
| * Ban/Limit Email Domains for Gravity Form Email Fields | |
| * http://gravitywiz.com/2012/11/11/banlimit-email-domains-for-gravity-form-email-fields/ | |
| */ | |
| class GWEmailDomainControl { | |
| private $_args; | |
| function __construct($args) { |
| <div id="myCarousel" class="carousel slide"> | |
| <!-- Carousel items --> | |
| <div class="carousel-inner"> | |
| <div class="active item"><img src="images/car_blackmusclecar.jpg" alt="Car Carousel" /></div> | |
| <div class="item"><img src="images/car_bluetruck.jpg" alt="Car Carousel" /></div> | |
| <div class="item"><img src="images/car_blackspeedster.jpg" alt="Car Carousel" /></div> | |
| <div class="item"><img src="images/car_redback.jpg" alt="Car Carousel" /></div> | |
| <div class="item"><img src="images/car_cyanclassic.jpg" alt="Car Carousel" /></div> | |
| <div class="item"><img src="images/car_redgrill.jpg" alt="Car Carousel" /></div> | |
| <div class="item"><img src="images/car_purplefire.jpg" alt="Car Carousel" /></div> |