Changeset 6044 for sites/trunk/global.wordpress.org/public_html/wp-content/themes/rosetta/sidebar-page.php
- Timestamp:
- 10/18/2017 10:19:27 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/global.wordpress.org/public_html/wp-content/themes/rosetta/sidebar-page.php
r2250 r6044 32 32 <p><?php _e( 'For help with installing or using WordPress, consult our documentation in your language.', 'rosetta' ); ?></p> 33 33 34 <ul> 35 <?php wp_list_bookmarks( 'categorize=0&category_before=&category_after=&title_li=&' ); ?> 36 </ul> 34 <?php 35 if ( has_nav_menu( 'rosetta_resources' ) ) { 36 wp_nav_menu( [ 37 'theme_location' => 'rosetta_resources', 38 'container' => false, 39 'depth' => 1, 40 'fallback_cb' => false, 41 ] ); 42 } else { 43 ?> 44 <ul> 45 <?php wp_list_bookmarks( 'categorize=0&category_before=&category_after=&title_li=&' ); ?> 46 </ul> 47 <?php 48 }
Note: See TracChangeset
for help on using the changeset viewer.