Changeset 15549 for trunk/wp-includes/link-template.php
- Timestamp:
- 08/28/2010 11:57:28 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r15481 r15549 463 463 */ 464 464 function get_post_comments_feed_link($post_id = '', $feed = '') { 465 global $id;466 467 if ( empty($post_id) ) 468 $post_id = (int) $id;465 if ( !$post_id ) 466 $post_id = get_the_ID(); 467 468 $post_id = absint($post_id); 469 469 470 470 if ( empty($feed) )
Note: See TracChangeset
for help on using the changeset viewer.