Ticket #12698: t12698-twentyten-query-strings-arrays.diff
| File t12698-twentyten-query-strings-arrays.diff, 4.5 KB (added by , 16 years ago) |
|---|
-
wp-content/themes/twentyten/attachment.php
46 46 <div class="entry-caption"><?php if ( ! empty( $post->post_excerpt ) ) the_excerpt(); ?></div> 47 47 48 48 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 49 <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>49 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> 50 50 51 51 </div><!-- .entry-content --> 52 52 -
wp-content/themes/twentyten/header.php
43 43 44 44 <div id="access"> 45 45 <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div> 46 <?php wp_nav_menu( 'sort_column=menu_order&container_class=menu-header'); ?>46 <?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header' ) ); ?> 47 47 </div><!-- #access --> 48 48 </div><!-- #masthead --> 49 49 </div><!-- #header --> -
wp-content/themes/twentyten/loop.php
117 117 <?php else : ?> 118 118 <div class="entry-content"> 119 119 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> 120 <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>120 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> 121 121 </div><!-- .entry-content --> 122 122 <?php endif; ?> 123 123 -
wp-content/themes/twentyten/onecolumn-page.php
15 15 <h1 class="entry-title"><?php the_title(); ?></h1> 16 16 <div class="entry-content"> 17 17 <?php the_content(); ?> 18 <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>18 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> 19 19 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?> 20 20 </div><!-- .entry-content --> 21 21 </div><!-- #post-<?php the_ID(); ?> --> -
wp-content/themes/twentyten/page.php
9 9 <h1 class="entry-title"><?php the_title(); ?></h1> 10 10 <div class="entry-content"> 11 11 <?php the_content(); ?> 12 <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>12 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> 13 13 <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?> 14 14 </div><!-- .entry-content --> 15 15 </div><!-- #post-<?php the_ID(); ?> --> -
wp-content/themes/twentyten/single.php
23 23 24 24 <div class="entry-content"> 25 25 <?php the_content(); ?> 26 <?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'twentyten' ) . '&after=</div>'); ?>26 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> 27 27 </div><!-- .entry-content --> 28 28 29 29 <?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their decscription show a bio on their entries ?>