Changeset 10361
- Timestamp:
- 01/14/2009 11:06:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r10335 r10361 1257 1257 global $wp_query; 1258 1258 1259 if ( !is_singular() )1259 if ( !is_singular() || !get_option('page_comments') ) 1260 1260 return; 1261 1261 … … 1300 1300 */ 1301 1301 function get_previous_comments_link( $label = '' ) { 1302 if ( !is_singular() )1302 if ( !is_singular() || !get_option('page_comments') ) 1303 1303 return; 1304 1304 … … 1339 1339 global $wp_query, $wp_rewrite; 1340 1340 1341 if ( !is_singular() )1341 if ( !is_singular() || !get_option('page_comments') ) 1342 1342 return; 1343 1343
Note: See TracChangeset
for help on using the changeset viewer.