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 | |
//* Replace the standard loop with our custom loop | |
//* props to David Wang, he is the man! | |
// @author David Wang | |
// @link http://genesissnippets.com/genesis-custom-loop/ | |
remove_action( 'genesis_loop', 'genesis_do_loop' ); | |
add_action( 'genesis_loop', 'child_do_custom_loop' ); | |
function child_do_custom_loop() { |
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
<a class="button small" href="#">Button</a> | |
<a class="button" href="#">Button</a> | |
<a class="button large" href="#">Button</a> | |
<a class="button blue small" href="#">Button</a> | |
<a class="button blue" href="#">Button</a> |
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
<a class="button purple" href="#"><i class="icon-home icon-large"></i> Go Home</a> | |
<a class="button blue" href="#"><i class="icon-info-sign icon-large"></i> Button</a> | |
<a class="button green" href="#"><i class="icon-comment icon-large"></i> Comment</a> | |
<a class="button orange" href="#"><i class="icon-repeat icon-large icon-spin"></i> Refresh</a> | |
<a class="button red" href="#"><i class="icon-cog icon-large"></i> Settings</a> |
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
<a href="#" class="social-icon"><i class="icon-twitter icon-large"></i></a> | |
<a href="#" class="social-icon"><i class="icon-google-plus icon-large"></i></a> | |
<a href="#" class="social-icon"><i class="icon-facebook icon-large"></i></a> | |
<a href="#" class="social-icon"><i class="icon-instagram icon-large"></i></a> |
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
<div class="action-circles"> | |
<div class="one-third first"> | |
<a href="#" class="action-circle"><i class="icon-refresh"></i>Infinite</a> | |
</div> | |
<div class="one-third"> | |
<a href="#" class="action-circle"><i class="icon-globe"></i>Worldwide</a> | |
</div> | |
<div class="one-third"> | |
<a href="#" class="action-circle"><i class="icon-headphones"></i>Creative</a> | |
</div> |
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
<div class="boxed"> | |
Put any content here! | |
</div> |
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
<div class="one-half first"> | |
<div class="quote-box"><p>Quote boxes are great for quotes! | |
<strong>- This Guy</strong></p> | |
</div> | |
</div> | |
<div class="one-half"> | |
<div class="quote-box"><p>Quote boxes are great for testimonials! | |
<strong>- This Other Guy</strong></p> | |
</div> | |
</div> |
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
// Requires Genesis 2.0 with HTML5 | |
// Replace site title with an inline logo | |
remove_action( 'genesis_site_title', 'genesis_seo_site_title' ); | |
add_action( 'genesis_site_title', 'child_do_logo' ); | |
function child_do_logo() { | |
$site_url = site_url(); | |
$blog_title = get_bloginfo(); |
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
// Create color style options | |
add_theme_support( | |
'genesis-style-selector', | |
array( | |
'latent-blue' => __( 'Blue', CHILD_DOMAIN ), | |
'latent-green' => __( 'Green', CHILD_DOMAIN ), | |
'latent-orange' => __( 'Orange', CHILD_DOMAIN ), | |
'latent-red' => __( 'Red', CHILD_DOMAIN ), | |
) | |
); |
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
// Add product category sort | |
add_action( 'genesis_before_loop', 'orc_product_category_sort' ); | |
function orc_product_category_sort() { | |
if ( is_post_type_archive( 'product' ) OR is_tax( 'product_cat' ) ) { | |
$portfolio = site_url('/shop/'); | |
echo '<a name="sort"></a>'; | |
echo '<div class="category-sort">'; |