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
| <span style="color: #993300;">Your content.</span> |
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 if (is_category('3')) { ?> | |
| <img src="http://www.yoursite.com/image-cat-3.jpg" /> | |
| <?php } elseif (is_category('2')) { ?> | |
| <img src="http://www.yoursite.com/image-cat-2.jpg" /> | |
| <?php } else { ?> | |
| <?php ot_cycle(); ?> | |
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 | |
| /* | |
| Template Name: Picture Page Center | |
| */ | |
| ?> | |
| <?php get_header(); ?> | |
| <div id="front"> | |
| <div id="home"> |
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="http://www.yourlink.com/page">Link Name</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 id="home-posts"> | |
| <?php $recent = new WP_Query("cat=" .of_get_option('home_cat'). "&showposts=10"); while($recent->have_posts()) : $recent->the_post();?> | |
| <div class="post-highlight clearfix"> | |
| <a href="<?php the_permalink() ?>" rel="noindex"><?php the_post_thumbnail('home-thumbnail'); ?></a> | |
| <h4><a href="<?php the_permalink() ?>" rel="noindex"><?php the_title(); ?></a></h4> | |
| <p class="post-meta"><?php the_time('F j, Y'); ?> / <a href="<?php the_permalink(); ?>#comments"><?php comments_number(__('Make A Comment'), __('1 Comment'), __('% Comments')); ?></a> / <?php the_category(', ') ?></p> | |
| <?php the_content_limit(275, "Read More"); ?> | |
| </div> | |
| <?php endwhile; ?> | |
| <?php wp_reset_query(); ?> |
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="http://www.googleplus.com"><img src="http://www.yoursite.com/google.png" alt="Google Plus" /></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
| <p> | |
| <?php if(of_get_option('intro', $single = true) != ""){ ?> | |
| <em><?php echo of_get_option('intro'); ?></em> | |
| <?php } ?> | |
| <?php if(of_get_option('flickr', $single = true) != ""){ ?> | |
| <a target="_blank" href="<?php echo of_get_option('flickr',''); ?>"><img class="fix" src="<?php bloginfo('template_url'); ?>/images/flickr.png" alt="" /></a> | |
| <?php } ?> | |
| <?php if(of_get_option('youtube', $single = true) != ""){ ?> | |
| <a target="_blank" href="<?php echo of_get_option('youtube'); ?>"><img class="fix" src="<?php bloginfo('template_url'); ?>/images/youtube.png" alt="" /></a> | |
| <?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
| <?php if ( has_post_thumbnail()) { ?> | |
| <?php } the_post_thumbnail(); { ?> | |
| <?php } else { ?> | |
| <h1><?php the_title(); ?></h1> | |
| <?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
| <?php $recent = new WP_Query("cat=&showposts=".of_get_option('home_cat_num'). ""); while($recent->have_posts()) : $recent->the_post(); ?> |