Changeset 3488
- Timestamp:
- 06/19/2016 10:08:49 PM (9 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2/sidebar-handbook.php
r7 r3488 6 6 */ 7 7 8 9 if ( is_active_sidebar( 'handbook' ) ) : ?> 8 if ( is_active_sidebar( wporg_get_current_handbook() ) ) : ?> 10 9 <div id="sidebar"> 11 10 <?php do_action( 'before_sidebar' ); ?> 12 11 <ul> 13 <?php dynamic_sidebar( 'handbook'); ?>12 <?php dynamic_sidebar( wporg_get_current_handbook() ); ?> 14 13 </ul> 15 14 <div class="clear"></div> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2/single-handbook.php
r3487 r3488 8 8 <?php get_header(); ?> 9 9 10 <div class="handbook-name"><span><a href="<?php echo esc_url( get_post_type_archive_link( 'handbook' ) ); ?>"><?php echo esc_html( WPorg_Handbook::get_name() ); ?></a></span></div>10 <div class="handbook-name"><span><a href="<?php echo esc_url( get_post_type_archive_link( wporg_get_current_handbook() ) ); ?>"><?php echo esc_html( wporg_get_current_handbook_name() ); ?></a></span></div> 11 11 12 12 <!-- Also called on in footer but will not display the second time. -->
Note: See TracChangeset
for help on using the changeset viewer.