Changeset 37052
- Timestamp:
- 03/22/2016 05:45:26 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-walker-comment.php
r37051 r37052 124 124 * @see wp_list_comments() 125 125 * 126 * @param WP_Comment $element Data object.127 * @param array $children_elements List of elements to continue traversing. Passed by reference.128 * @param int $max_depth Max depth to traverse.129 * @param int $depth Depth of the current element.130 * @param array $args An array of arguments.131 * @param string $output Used to append additional content. Passed by reference.126 * @param WP_Comment $element Comment data object. 127 * @param array $children_elements List of elements to continue traversing. Passed by reference. 128 * @param int $max_depth Max depth to traverse. 129 * @param int $depth Depth of the current element. 130 * @param array $args An array of arguments. 131 * @param string $output Used to append additional content. Passed by reference. 132 132 */ 133 133 public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { … … 165 165 * @global WP_Comment $comment 166 166 * 167 * @param string $output Used to append additional content. Passed by reference.167 * @param string $output Used to append additional content. Passed by reference. 168 168 * @param WP_Comment $comment Comment data object. 169 * @param int $depth Optional. Depth of the current comment in reference to parents. Default 0.170 * @param array $args Optional. An array of arguments. Default empty array.171 * @param int $id Optional. ID of the current comment. Default 0 (unused).169 * @param int $depth Optional. Depth of the current comment in reference to parents. Default 0. 170 * @param array $args Optional. An array of arguments. Default empty array. 171 * @param int $id Optional. ID of the current comment. Default 0 (unused). 172 172 */ 173 173 public function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) { … … 256 256 * 257 257 * @param WP_Comment $comment Comment to display. 258 * @param int $depth Depth of the current comment.259 * @param array $args An array of arguments.258 * @param int $depth Depth of the current comment. 259 * @param array $args An array of arguments. 260 260 */ 261 261 protected function comment( $comment, $depth, $args ) { … … 315 315 * 316 316 * @param WP_Comment $comment Comment to display. 317 * @param int $depth Depth of the current comment.318 * @param array $args An array of arguments.317 * @param int $depth Depth of the current comment. 318 * @param array $args An array of arguments. 319 319 */ 320 320 protected function html5_comment( $comment, $depth, $args ) {
Note: See TracChangeset
for help on using the changeset viewer.