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://plus.google.com"><img src="http://www.yoursite.com/image.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
| add_theme_page('Slideshow', 'Slideshow', 'edit_posts', 'ot-cycle', 'ot_cycle_admin_page'); |
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 get_template_part( '/includes/donation-bar' ); ?> |
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 $loop = new WP_Query( array( 'post_type' => 'slide', 'posts_per_page' => '-1', 'orderby'=>'menu_order', 'order'=>'ASC' ) ); ?> |
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 the_content(); ?> |
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
| <form id="searchform" method="get" action="<?php echo get_option('home') ?>/"> | |
| <input type="text" value="<?php _e("Search our site", 'organizedthemes'); ?>" name="s" id="s-form" onfocus="if (this.value == '<?php _e("Search our site", 'organizedthemes'); ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e("Search our site", 'organizedthemes'); ?>';}" /> | |
| </form> |
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-bar" class="clearfix"> | |
| <h4 id="donate-title">Donate Title</h4> | |
| <div id="donate-graph-holder"> | |
| <div id="donate-graph-base"></div> | |
| <div id="donate-graph-highlight" style="width:50%;"></div> | |
| <div id="donate-end"><p>Goal></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
| <div class="content shadow clearfix"> | |
| <div class="full"> | |
| <?php $recent = new WP_Query("showposts=3"); while($recent->have_posts()) : $recent->the_post();?> | |
| <article id="<?php the_ID(); ?>" <?php post_class(); ?>> | |
| <h2 class="title"><?php the_title(); ?></h2> | |
| <?php the_excerpt(); ?> | |
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="content shadow clearfix"> | |
| <div class="main-content"> | |
| <?php $recent = new WP_Query("showposts=10"); while($recent->have_posts()) : $recent->the_post();?> | |
| <article id="<?php the_ID(); ?>" <?php post_class(); ?>> | |
| <h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> | |
| <?php the_excerpt(); ?> | |