Changeset 45580 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 07/01/2019 08:00:12 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r45505 r45580 263 263 * @return string Comment author's IP address. 264 264 */ 265 function get_comment_author_IP( $comment_ID = 0 ) { 265 function get_comment_author_IP( $comment_ID = 0 ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 266 266 $comment = get_comment( $comment_ID ); 267 267 … … 288 288 * Default current comment. 289 289 */ 290 function comment_author_IP( $comment_ID = 0 ) { 290 function comment_author_IP( $comment_ID = 0 ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 291 291 echo esc_html( get_comment_author_IP( $comment_ID ) ); 292 292 } … … 652 652 * @return int The comment ID. 653 653 */ 654 function get_comment_ID() { 654 function get_comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 655 655 $comment = get_comment(); 656 656 … … 672 672 * @since 0.71 673 673 */ 674 function comment_ID() { 674 function comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 675 675 echo get_comment_ID(); 676 676 }
Note: See TracChangeset
for help on using the changeset viewer.