Changeset 15549 for trunk/wp-includes/comment-template.php
- Timestamp:
- 08/28/2010 11:57:28 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r15433 r15549 546 546 */ 547 547 function get_comments_number( $post_id = 0 ) { 548 global $id;549 $post_id = (int) $post_id;550 551 548 if ( !$post_id ) 552 $post_id = (int) $id; 549 $post_id = get_the_ID(); 550 551 $post_id = absint($post_id); 553 552 554 553 $post = get_post($post_id); … … 565 564 * 566 565 * @since 0.71 567 * @uses $id568 566 * @uses apply_filters() Calls the 'comments_number' hook on the output and number of comments respectively. 569 567 * … … 574 572 */ 575 573 function comments_number( $zero = false, $one = false, $more = false, $deprecated = '' ) { 576 global $id;577 578 574 if ( !empty( $deprecated ) ) 579 575 _deprecated_argument( __FUNCTION__, '1.3' ); 580 576 581 $number = get_comments_number( $id);577 $number = get_comments_number(get_the_ID()); 582 578 583 579 if ( $number > 1 ) … … 704 700 * @since 1.5.0 705 701 * @uses apply_filters() Calls 'trackback_url' on the resulting trackback URL 706 * @uses $id707 702 * 708 703 * @return string The trackback URL after being filtered 709 704 */ 710 705 function get_trackback_url() { 711 global $id;712 706 if ( '' != get_option('permalink_structure') ) { 713 707 $tb_url = trailingslashit(get_permalink()) . user_trailingslashit('trackback', 'single_trackback'); 714 708 } else { 715 $tb_url = get_option('siteurl') . '/wp-trackback.php?p=' . $id;709 $tb_url = get_option('siteurl') . '/wp-trackback.php?p=' . get_the_ID(); 716 710 } 717 711 return apply_filters('trackback_url', $tb_url); … … 845 839 * @global array $comment List of comment objects for the current post 846 840 * @uses $wpdb 847 * @uses $id848 841 * @uses $post 849 842 * @uses $withcomments Will not try to get the comments if the post has none. … … 962 955 * 963 956 * @since 0.71 964 * @uses $id965 957 * @uses $wpcommentspopupfile 966 958 * @uses $wpcommentsjavascript … … 975 967 */ 976 968 function comments_popup_link( $zero = false, $one = false, $more = false, $css_class = '', $none = false ) { 977 global $id, $wpcommentspopupfile, $wpcommentsjavascript; 969 global $wpcommentspopupfile, $wpcommentsjavascript; 970 971 $id = get_the_ID(); 978 972 979 973 if ( false === $zero ) $zero = __( 'No Comments' ); … … 1169 1163 */ 1170 1164 function get_comment_id_fields() { 1171 global $id;1165 $id = get_the_ID(); 1172 1166 1173 1167 $replytoid = isset($_GET['replytocom']) ? (int) $_GET['replytocom'] : 0;
Note: See TracChangeset
for help on using the changeset viewer.