This file contains 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 if ( is_front_page() ) : ?><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/specific image for cat"> | |
<?php elseif ( is_category( 'category 1' ) || has_category ('category 1')) : ?> | |
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/specific image for cat"> | |
<?php elseif ( is_category( 'category 2' ) || has_category ('category 2')) : ?> | |
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/specific image for cat"> | |
<?php elseif ( is_category( 'category 3' ) || has_category ('category 3')) : ?> | |
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/specific image for cat"> | |
<?php elseif ( is_category( 'other' ) ) : ?> | |
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/specific image for cat"> | |
<?php else: ?> |
This file contains 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
<iframe style="border: 0px none transparent;" src="http://www.ustream.tv/embed/your specific id#" frameborder="0" scrolling="no" width="525" height="333"></iframe><a style="padding: 2px 0px 4px; width: 525px; background: #ffffff; display: block; color: #000000; font-weight: normal; font-size: 10px; text-decoration: underline; text-align: center;" href="Destination Link" target="_blank">Link Anchor Text</a> | |
/*Adding the social stream -- specify width that's specific to your site*/ | |
<iframe width="330" scrolling="no" height="625" frameborder="0" style="border: 0px none transparent;" src="http://www.ustream.tv/socialstream/your specific id#"> | |
This file contains 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
/** Customize the post meta function */ | |
add_filter( 'genesis_post_meta', 'post_meta_filter' ); | |
function post_meta_filter($post_meta) { | |
if ( !is_page() ) { | |
$post_meta = '[post_categories before="CUSTOM CATEGORY NAME"] [post_tags before="CUSTOM TAG NAME"]'; | |
return $post_meta; |
This file contains 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
/** Customize Read More Text */ | |
add_filter( 'excerpt_more', 'child_read_more_link' ); | |
add_filter( 'get_the_content_more_link', 'child_read_more_link' ); | |
add_filter( 'the_content_more_link', 'child_read_more_link' ); | |
function child_read_more_link() { | |
return '<a href="' . get_permalink() . '" rel="nofollow">CUSTOMIZE YOUR TEXT HERE</a>'; | |
} |
This file contains 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
/** Removing Blog Post From Home Page */ | |
remove_action( 'genesis_loop', 'genesis_do_loop' );add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); | |
genesis(); | |
This file contains 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_action( 'genesis_loop', 'minimum_grid_loop_helper' ); | |
function minimum_grid_loop_helper() { | |
if ( function_exists( 'genesis_grid_loop' ) ) { | |
genesis_grid_loop( array( | |
'features' => 0, | |
'feature_image_size' => 'featured', | |
'feature_image_class' => 'post-image', | |
'feature_content_limit' => 0, | |
'grid_image_size' => 0, |
This file contains 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
/* Change default comment Speak Your Mind */ | |
function change_default_comment_text($args) { | |
$args['title_reply'] = 'Leave a Comment'; | |
return $args; | |
} | |
add_filter( 'genesis_comment_form_args', 'change_default_comment_text' ); |
This file contains 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 to the page or it will detect any ph# on page and make it clickable for iPhone. | |
<meta name="format-detection" content="telephone=no"> | |
Then wrap specified phone number: | |
<a href="tel:1-800-555-5555">Anchor to any words or combo of numbers and/or letters</a> |
This file contains 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
/*Stylesheet cleaned up and organized by Marketing Press*/ | |
.clear { | |
clear:both | |
} | |
.nobr { | |
white-space:nowrap; | |
} |
OlderNewer