Changeset 4038
- Timestamp:
- 09/12/2016 07:10:09 PM (9 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/archive.php
r848 r4038 21 21 <?php endif; ?> 22 22 </h1> 23 23 24 24 <?php rewind_posts(); // due to the_post() above ?> 25 25 26 26 <?php get_search_form(); ?> 27 27 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/author.php
r848 r4038 26 26 <?php endif; ?> 27 27 28 28 29 29 <?php rewind_posts(); // due to the_post() above ?> 30 30 31 31 <?php get_search_form(); ?> 32 32 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/category.php
r850 r4038 17 17 echo '<div class="archive-meta">' . $category_description . '</div>'; 18 18 ?> 19 19 20 20 <?php get_search_form(); ?> 21 21 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/footer.php
r842 r4038 21 21 22 22 <?php wp_nav_menu( array( 'container_class' => 'menu-footer', 'theme_location' => 'primary', 'depth' => 1 ) ); ?> 23 23 24 24 </div><!-- #colophon --> 25 25 </div><!-- #footer --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/header.php
r1545 r4038 87 87 <h2>WordCamp is a conference that focuses on everything WordPress.</h2> 88 88 <p> 89 WordCamps are informal, community-organized events that are put together by WordPress users like you. 90 Everyone from casual users to core developers participate, share ideas, and get to know each other. 89 WordCamps are informal, community-organized events that are put together by WordPress users like you. 90 Everyone from casual users to core developers participate, share ideas, and get to know each other. 91 91 </p> 92 <p class="wc-hero-actions"> 92 <p class="wc-hero-actions"> 93 93 <a href="<?php echo home_url( '/about/' ); ?>" class="wc-hero-learnmore">Learn More</a> or 94 94 <a href="<?php echo home_url( '/schedule/' ); ?>" class="wc-primary-button">Find a WordCamp</a> 95 95 </p> 96 96 </div><!-- .wc-hero-intro --> 97 97 98 98 <div class="wc-hero-image cycle-me"> 99 99 <?php … … 108 108 ) ); 109 109 ?> 110 110 111 111 <?php foreach ( $attachments as $image ) : ?> 112 113 <?php 112 113 <?php 114 114 $image_src = wp_get_attachment_image_src( $image->ID, 'wccentral-thumbnail-hero' ); 115 115 if ( ! $image_src ) continue; … … 122 122 <?php endif; ?> 123 123 </div> 124 124 125 125 <?php endforeach; ?> 126 126 127 127 </div><!-- .wc-hero-image --> 128 128 129 129 <div class="wc-hero-mailinglist"> 130 130 <?php if ( WordCamp_Central_Theme::can_subscribe() ) : ?> 131 131 <div class="wc-hero-mailinglist-container"> 132 132 133 133 <?php if ( WordCamp_Central_Theme::get_subscription_status() == 'success' ) : ?> 134 134 … … 148 148 </form> 149 149 <?php endif; // get_subscription_status ?> 150 150 151 151 </div> 152 152 <?php endif; // can_subscribe ?> 153 153 </div><!-- #wc-hero-mailinglist --> 154 154 155 155 </div> 156 156 </div><!-- #wc-hero-panel --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/index.php
r848 r4038 12 12 13 13 <?php get_template_part( 'navigation-above' ); ?> 14 14 15 15 <?php while ( have_posts() ) : the_post(); ?> 16 16 17 17 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 18 18 19 19 <?php get_template_part( 'content', get_post_format() ); ?> 20 20 … … 22 22 23 23 <?php endwhile; // End the loop. Whew. ?> 24 24 25 25 <?php get_template_part( 'navigation-below' ); ?> 26 26 27 27 </div><!-- #content --> 28 28 29 29 </div><!-- #container --> 30 30 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/loop-attachment.php
r842 r4038 24 24 ?></a></p> 25 25 <?php endif; ?> 26 26 27 27 <div class="entry-meta"> 28 <ul> 28 <ul> 29 29 <li class="wc-single-avatar"><?php echo get_avatar( get_the_author_meta('ID'), 140 ); ?></li> 30 30 <li class="wc-single-author"><strong>Posted by</strong> <?php the_author_posts_link(); ?></li> 31 <li class="wc-single-date"><strong>Posted on</strong> <?php the_date(); ?></li> 31 <li class="wc-single-date"><strong>Posted on</strong> <?php the_date(); ?></li> 32 32 <li><?php comments_popup_link('No replies yet', '1 reply', '% replies', 'comments-link', 'Comments are off for this post' ); ?></li> 33 33 <li> … … 46 46 ?> 47 47 </li> 48 <li class="wc-single-search"><strong>Search</strong> <?php get_search_form(); ?></li> 49 50 </ul> 48 <li class="wc-single-search"><strong>Search</strong> <?php get_search_form(); ?></li> 49 50 </ul> 51 51 </div><!-- .entry-meta --> 52 52 … … 82 82 echo wp_get_attachment_image( $post->ID, array( $attachment_width, $attachment_height ) ); // filterable image width with, essentially, no limit for image height. 83 83 ?></a></p> 84 84 85 85 <div id="nav-below" class="navigation"> 86 86 <div class="nav-previous"><?php previous_image_link( false ); ?></div> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/page.php
r842 r4038 21 21 <?php endwhile; // have_posts ?> 22 22 <?php endif; ?> 23 23 24 24 </div><!-- #content --> 25 25 </div><!-- #container --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/search.php
r848 r4038 9 9 <div id="content" role="main" class="group"> 10 10 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' ); ?></h1> 11 11 12 12 <?php get_search_form(); ?> 13 13 14 14 <?php if ( have_posts() ) : ?> 15 15 16 16 <?php get_template_part( 'navigation-above' ); ?> 17 17 … … 27 27 28 28 <?php get_template_part( 'navigation-below' ); ?> 29 29 30 30 <?php else : // have_posts ?> 31 31 32 32 <div id="post-0" class="post no-results not-found"> 33 33 <h2 class="entry-title"><?php _e( 'We couldn’t find anything!', 'twentyten' ); ?></h2> … … 37 37 </div><!-- .entry-content --> 38 38 </div><!-- #post-0 --> 39 39 40 40 <?php endif; ?> 41 41 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/single.php
r842 r4038 15 15 16 16 <div class="entry-meta"> 17 <ul> 17 <ul> 18 18 <li class="wc-single-avatar"><?php echo get_avatar( get_the_author_meta('ID'), 140 ); ?></li> 19 19 <li class="wc-single-author"><strong>Posted by</strong> <?php the_author_posts_link(); ?></li> 20 <li class="wc-single-date"><strong>Posted on</strong> <?php the_date(); ?></li> 21 <li class="wc-single-cats"><strong>Categories</strong> <?php echo get_the_category_list(', '); ?></li> 20 <li class="wc-single-date"><strong>Posted on</strong> <?php the_date(); ?></li> 21 <li class="wc-single-cats"><strong>Categories</strong> <?php echo get_the_category_list(', '); ?></li> 22 22 <?php if ( has_tag() ) : ?> 23 <li><strong>Tags</strong> <?php the_tags(' '); ?></li> 23 <li><strong>Tags</strong> <?php the_tags(' '); ?></li> 24 24 <?php endif; ?> 25 25 <li><?php comments_popup_link('No replies yet', '1 reply', '% replies', 'comments-link', 'Comments are off for this post' ); ?></li> 26 <li class="wc-single-search"><strong>Search</strong> <?php get_search_form(); ?></li> 26 <li class="wc-single-search"><strong>Search</strong> <?php get_search_form(); ?></li> 27 27 28 </ul> 28 </ul> 29 29 </div><!-- .entry-meta --> 30 30 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-central-2012/tag.php
r848 r4038 12 12 printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' ); 13 13 ?></h1> 14 14 15 15 <?php get_search_form(); ?> 16 16
Note: See TracChangeset
for help on using the changeset viewer.