Changeset 1267
- Timestamp:
- 02/17/2015 07:26:38 AM (10 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/archive.php
r781 r1267 23 23 <?php while ( have_posts() ) : the_post(); ?> 24 24 25 <?php get_template_part( 'content', 'reference-archive'); ?>25 <?php get_template_part( 'content', ( is_parsed_post_type() ? 'reference-archive' : '' ) ); ?> 26 26 27 27 <?php endwhile; ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/single.php
r724 r1267 16 16 <?php while ( have_posts() ) : the_post(); ?> 17 17 18 <?php get_template_part( 'content', 'reference'); ?>18 <?php get_template_part( 'content', ( is_parsed_post_type() ? 'reference' : '' ) ); ?> 19 19 20 20 <?php //wporg_developer_post_nav(); ?>
Note: See TracChangeset
for help on using the changeset viewer.