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 | |
// INSERT POST THUMBNAIL | |
if ( has_post_thumbnail()) { $thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large'); echo $thumbnail[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
<?php | |
/* | |
Template Name: Snarfer | |
*/ | |
?> |
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 FUNCTIONS.PHP | |
if (function_exists('register_sidebar')) { | |
register_sidebar(array( | |
'before_widget' => '', | |
'after_widget' => '', | |
'before_title' => '<h5>', | |
'after_title' => '<h5>', | |
)) | |
} |
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
.black_and_white { filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); } |
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
.circle { -webkit-border-radius: 50em; -moz-border-radius: 50em; -o-border-radius: 50em; border-radius: 50em; } |
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
/* | |
Theme Name: Twenty Twelve Child | |
Theme URI: http://example.com/ | |
Description: Child theme for the Twenty Twelve theme | |
Author: Your name here | |
Author URI: http://example.com/about/ | |
Template: twentytwelve | |
Version: 0.1.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
// WORDPRESS LOOP | |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> | |
<div <?php post_class() ?> id="post-<?php the_ID(); ?>"> | |
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> | |
<?php include (TEMPLATEPATH . '/inc/meta.php' ); ?> | |
<div class="entry"> |
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 echo do_shortcode( '[contact-form-7 id="12" title="Contact Form"]' ); ?> |
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
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) { | |
/* your css rules for ipad portrait */ | |
} | |
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) { | |
/* your css rules for ipad landscape */ | |
} |
OlderNewer