Changeset 43571 for trunk/src/wp-content/themes/twentytwelve/functions.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/functions.php
r42343 r43571 70 70 */ 71 71 add_theme_support( 72 'custom-background', array( 72 'custom-background', 73 array( 73 74 'default-color' => 'e6e6e6', 74 75 ) … … 331 332 <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?></div> 332 333 </nav><!-- .navigation --> 333 <?php334 <?php 334 335 endif; 335 336 } … … 353 354 case 'trackback': 354 355 // Display trackbacks differently than normal comments. 355 ?>356 ?> 356 357 <li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>"> 357 358 <p><?php _e( 'Pingback:', 'twentytwelve' ); ?> <?php comment_author_link(); ?> <?php edit_comment_link( __( '(Edit)', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?></p> 358 <?php359 <?php 359 360 break; 360 361 default: 361 362 // Proceed with normal comments. 362 363 global $post; 363 ?>364 ?> 364 365 <li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>"> 365 366 <article id="comment-<?php comment_ID(); ?>" class="comment"> … … 380 381 sprintf( __( '%1$s at %2$s', 'twentytwelve' ), get_comment_date(), get_comment_time() ) 381 382 ); 382 383 ?> 383 384 </header><!-- .comment-meta --> 384 385 … … 396 397 comment_reply_link( 397 398 array_merge( 398 $args, array( 399 $args, 400 array( 399 401 'reply_text' => __( 'Reply', 'twentytwelve' ), 400 402 'after' => ' <span>↓</span>', … … 404 406 ) 405 407 ); 406 ?>408 ?> 407 409 </div><!-- .reply --> 408 410 </article><!-- #comment-## --> 409 <?php411 <?php 410 412 break; 411 413 endswitch; // end comment_type check … … 552 554 if ( isset( $wp_customize->selective_refresh ) ) { 553 555 $wp_customize->selective_refresh->add_partial( 554 'blogname', array( 556 'blogname', 557 array( 555 558 'selector' => '.site-title > a', 556 559 'container_inclusive' => false, … … 559 562 ); 560 563 $wp_customize->selective_refresh->add_partial( 561 'blogdescription', array( 564 'blogdescription', 565 array( 562 566 'selector' => '.site-description', 563 567 'container_inclusive' => false,
Note: See TracChangeset
for help on using the changeset viewer.