Skip to content

Instantly share code, notes, and snippets.

View grtaylor2's full-sized avatar

Greg Taylor grtaylor2

View GitHub Profile
@grtaylor2
grtaylor2 / gist:4504569
Last active December 10, 2015 22:48
Ustream Embed to WordPress
<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#">
@grtaylor2
grtaylor2 / gist:4332961
Created December 18, 2012 23:08
Specific WordPress header by category. This will work for both the category archive page and all individual posts marked with specific categories.
<?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: ?>