Changeset 47009
- Timestamp:
- 12/24/2019 04:17:17 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r47008 r47009 10 10 11 11 /** 12 * Retrieve the author of the current comment.12 * Retrieves the author of the current comment. 13 13 * 14 14 * If the comment has an empty comment_author field, then 'Anonymous' person is … … 75 75 76 76 /** 77 * Retrieve the email of the author of the current comment.77 * Retrieves the email of the author of the current comment. 78 78 * 79 79 * @since 1.5.0 … … 101 101 102 102 /** 103 * Display the email of the author of the current global $comment.103 * Displays the email of the author of the current global $comment. 104 104 * 105 105 * Care should be taken to protect the email address and assure that email … … 132 132 133 133 /** 134 * Display the htmlemail link to the author of the current comment.134 * Displays the HTML email link to the author of the current comment. 135 135 * 136 136 * Care should be taken to protect the email address and assure that email … … 157 157 158 158 /** 159 * Return the htmlemail link to the author of the current comment.159 * Returns the HTML email link to the author of the current comment. 160 160 * 161 161 * Care should be taken to protect the email address and assure that email … … 205 205 206 206 /** 207 * Retrieve the HTML link to the URL of the author of the current comment.207 * Retrieves the HTML link to the URL of the author of the current comment. 208 208 * 209 209 * Both get_comment_author_url() and get_comment_author() rely on get_comment(), … … 243 243 244 244 /** 245 * Display the HTML link to the URL of the author of the current comment.245 * Displays the HTML link to the URL of the author of the current comment. 246 246 * 247 247 * @since 0.71 … … 282 282 283 283 /** 284 * Display the IP address of the author of the current comment.284 * Displays the IP address of the author of the current comment. 285 285 * 286 286 * @since 0.71 … … 538 538 539 539 /** 540 * Retrieve the comment date of the current comment.540 * Retrieves the comment date of the current comment. 541 541 * 542 542 * @since 1.5.0 … … 568 568 569 569 /** 570 * Display the comment date of the current comment.570 * Displays the comment date of the current comment. 571 571 * 572 572 * @since 0.71 … … 625 625 626 626 /** 627 * Display the excerpt of the current comment.627 * Displays the excerpt of the current comment. 628 628 * 629 629 * @since 1.2.0 … … 650 650 651 651 /** 652 * Retrieve the comment id of the current comment.652 * Retrieves the comment id of the current comment. 653 653 * 654 654 * @since 1.5.0 … … 672 672 673 673 /** 674 * Display the comment id of the current comment.674 * Displays the comment id of the current comment. 675 675 * 676 676 * @since 0.71 … … 681 681 682 682 /** 683 * Retrieve the link to a given comment.683 * Retrieves the link to a given comment. 684 684 * 685 685 * @since 1.5.0 … … 819 819 820 820 /** 821 * Display the link to the current post comments.821 * Displays the link to the current post comments. 822 822 * 823 823 * @since 0.71 … … 867 867 868 868 /** 869 * Display the language string for the number of comments the current post has.869 * Displays the language string for the number of comments the current post has. 870 870 * 871 871 * @since 0.71 … … 884 884 885 885 /** 886 * Display the language string for the number of comments the current post has.886 * Displays the language string for the number of comments the current post has. 887 887 * 888 888 * @since 4.0.0 … … 945 945 946 946 /** 947 * Retrieve the text of the current comment.947 * Retrieves the text of the current comment. 948 948 * 949 949 * @since 1.5.0 … … 975 975 976 976 /** 977 * Display the text of the current comment.977 * Displays the text of the current comment. 978 978 * 979 979 * @since 0.71 … … 1005 1005 1006 1006 /** 1007 * Retrieve the comment time of the current comment.1007 * Retrieves the comment time of the current comment. 1008 1008 * 1009 1009 * @since 1.5.0 … … 1040 1040 1041 1041 /** 1042 * Display the comment time of the current comment.1042 * Displays the comment time of the current comment. 1043 1043 * 1044 1044 * @since 0.71 … … 1051 1051 1052 1052 /** 1053 * Retrieve the comment type of the current comment.1053 * Retrieves the comment type of the current comment. 1054 1054 * 1055 1055 * @since 1.5.0 … … 1080 1080 1081 1081 /** 1082 * Display the comment type of the current comment.1082 * Displays the comment type of the current comment. 1083 1083 * 1084 1084 * @since 0.71 … … 1112 1112 1113 1113 /** 1114 * Retrieve The current post's trackback URL.1114 * Retrieves the current post's trackback URL. 1115 1115 * 1116 1116 * There is a check to see if permalink's have been enabled and if so, will … … 1140 1140 1141 1141 /** 1142 * Display the current post's trackback URL.1142 * Displays the current post's trackback URL. 1143 1143 * 1144 1144 * @since 0.71 … … 1169 1169 1170 1170 /** 1171 * Generate and displaythe RDF for the trackback information of current post.1171 * Generates and displays the RDF for the trackback information of current post. 1172 1172 * 1173 1173 * Deprecated in 3.0.0, and restored in 3.0.1. … … 1261 1261 1262 1262 /** 1263 * Display form token for unfiltered comments.1263 * Displays form token for unfiltered comments. 1264 1264 * 1265 1265 * Will only display nonce token if the current user has permissions for … … 1285 1285 1286 1286 /** 1287 * Load the comment template specified in $file.1287 * Loads the comment template specified in $file. 1288 1288 * 1289 1289 * Will not display the comments template if not on single post or page, or if … … 1598 1598 1599 1599 /** 1600 * Retrieve HTML content for reply to comment link.1600 * Retrieves HTML content for reply to comment link. 1601 1601 * 1602 1602 * @since 2.7.0 … … 1743 1743 1744 1744 /** 1745 * Retrieve HTML content for reply to post link.1745 * Retrieves HTML content for reply to post link. 1746 1746 * 1747 1747 * @since 2.7.0 … … 1833 1833 1834 1834 /** 1835 * Retrieve HTML content for cancel comment reply link.1835 * Retrieves HTML content for cancel comment reply link. 1836 1836 * 1837 1837 * @since 2.7.0 … … 1863 1863 1864 1864 /** 1865 * Display HTML content for cancel comment reply link.1865 * Displays HTML content for cancel comment reply link. 1866 1866 * 1867 1867 * @since 2.7.0 … … 1874 1874 1875 1875 /** 1876 * Retrieve hidden input HTML for replying to comments.1876 * Retrieves hidden input HTML for replying to comments. 1877 1877 * 1878 1878 * @since 3.0.0 … … 1903 1903 1904 1904 /** 1905 * Output hidden input HTML for replying to comments.1905 * Outputs hidden input HTML for replying to comments. 1906 1906 * 1907 1907 * @since 2.7.0 … … 1914 1914 1915 1915 /** 1916 * Display text based on comment reply status.1916 * Displays text based on comment reply status. 1917 1917 * 1918 1918 * Only affects users with JavaScript disabled. … … 1957 1957 1958 1958 /** 1959 * Listcomments.1959 * Displays a list of comments. 1960 1960 * 1961 1961 * Used in the comments.php template to list comments for a particular post.
Note: See TracChangeset
for help on using the changeset viewer.