AL : Alabama AK : Alaska AZ : Arizona AR : Arkansas CA : California CO : Colorado CT : Connecticut DE : Delaware DC : District of Colombia FL : Florida
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
Host github.com | |
HostName github.com | |
User git | |
IdentityFile ~/.ssh/id_rsa | |
Host github.com-plasticbank | |
Hostname github.com | |
User git | |
IdentityFile ~/.ssh/id_rsa_plasticbank |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"files.trimTrailingWhitespace": true, | |
"files.trimFinalNewlines": true, | |
"editor.minimap.enabled": false, | |
"workbench.startupEditor": "none", | |
"editor.renderControlCharacters": false, | |
"editor.fontLigatures": true, | |
"editor.renderWhitespace": "none", | |
"editor.overviewRulerBorder": false, |
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 | |
$the_query = new WP_Query( $args ); | |
if ( $the_query->have_posts() ) { | |
echo '<ul>'; | |
while ( $the_query->have_posts() ) { | |
$the_query->the_post(); | |
echo '<li>' . get_the_title() . '</li>'; | |
} | |
echo '</ul>'; | |
} else { |
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 | |
?> |
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
{"facets":[{"label":"Case Study Area","name":"cs_area","type":"dropdown","source":"cf\/practice_areas","label_any":"Any","parent_term":"","orderby":"count","hierarchical":"no","count":"9999"}]} |
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
{% for link in linklists.your_menu.links %} | |
COUNT: {{ link.object.all_products_count }} <br> | |
{% endfor %} |
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 | |
/* | |
Plugin Name: Reading Time | |
Plugin URI: http://wordpress.org/extend/plugins/estimated-post-reading-time/ | |
Description: Calculates an average required time to complete reading a post. | |
Version: 1.4 | |
Author: Konstantinos Kouratoras | |
Author URI: http://www.kouratoras.gr | |
Author Email: [email protected] |
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 | |
$args = array( | |
'post_type' => 'post', | |
'posts_per_page' => 4, | |
'paged' => $paged | |
); | |
$loop = new WP_Query( $args ); | |
while ( $loop->have_posts() ) : $loop->the_post();?> | |
<h2><a href="<?php the_permalink();?>"><?php the_title();?></a></h2> | |
<span class="date"><?php the_date();?></span> |
NewerOlder