Changeset 47008
- Timestamp:
- 12/24/2019 04:08:34 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r46885 r47008 243 243 244 244 /** 245 * Display the html link to the urlof the author of the current comment.245 * Display the HTML link to the URL of the author of the current comment. 246 246 * 247 247 * @since 0.71 … … 295 295 296 296 /** 297 * Retrieve the url of the author of the current comment.297 * Retrieves the URL of the author of the current comment, not linked. 298 298 * 299 299 * @since 1.5.0 … … 302 302 * @param int|WP_Comment $comment_ID Optional. WP_Comment or the ID of the comment for which to get the author's URL. 303 303 * Default current comment. 304 * @return string Comment author URL .304 * @return string Comment author URL, if provided, an empty string otherwise. 305 305 */ 306 306 function get_comment_author_url( $comment_ID = 0 ) { … … 328 328 329 329 /** 330 * Display the url of the author of the current comment.330 * Displays the URL of the author of the current comment, not linked. 331 331 * 332 332 * @since 0.71 … … 353 353 354 354 /** 355 * Retrieves the HTML link of the urlof the author of the current comment.355 * Retrieves the HTML link of the URL of the author of the current comment. 356 356 * 357 357 * $linktext parameter is only used if the URL does not exist for the comment … … 398 398 399 399 /** 400 * Displays the HTML link of the urlof the author of the current comment.400 * Displays the HTML link of the URL of the author of the current comment. 401 401 * 402 402 * @since 0.71 … … 1350 1350 1351 1351 /* 1352 * The urlof the current comment author escaped for use in attributes.1352 * The URL of the current comment author escaped for use in attributes. 1353 1353 */ 1354 1354 $comment_author_url = esc_url( $commenter['comment_author_url'] );
Note: See TracChangeset
for help on using the changeset viewer.