wp/wp-admin/includes/class-walker-category-checklist.php
changeset 21 48c4eec2b7e6
parent 19 3d72ae0968f4
child 22 8c2e4d02f4ef
--- a/wp/wp-admin/includes/class-walker-category-checklist.php	Thu Sep 29 08:06:27 2022 +0200
+++ b/wp/wp-admin/includes/class-walker-category-checklist.php	Fri Sep 05 18:40:08 2025 +0200
@@ -32,7 +32,7 @@
 	 *
 	 * @param string $output Used to append additional content (passed by reference).
 	 * @param int    $depth  Depth of category. Used for tab indentation.
-	 * @param array  $args   An array of arguments. @see wp_terms_checklist()
+	 * @param array  $args   An array of arguments. See {@see wp_terms_checklist()}.
 	 */
 	public function start_lvl( &$output, $depth = 0, $args = array() ) {
 		$indent  = str_repeat( "\t", $depth );
@@ -48,7 +48,7 @@
 	 *
 	 * @param string $output Used to append additional content (passed by reference).
 	 * @param int    $depth  Depth of category. Used for tab indentation.
-	 * @param array  $args   An array of arguments. @see wp_terms_checklist()
+	 * @param array  $args   An array of arguments. See {@see wp_terms_checklist()}.
 	 */
 	public function end_lvl( &$output, $depth = 0, $args = array() ) {
 		$indent  = str_repeat( "\t", $depth );
@@ -67,7 +67,7 @@
 	 * @param string  $output            Used to append additional content (passed by reference).
 	 * @param WP_Term $data_object       The current term object.
 	 * @param int     $depth             Depth of the term in reference to parents. Default 0.
-	 * @param array   $args              An array of arguments. @see wp_terms_checklist()
+	 * @param array   $args              An array of arguments. See {@see wp_terms_checklist()}.
 	 * @param int     $current_object_id Optional. ID of the current term. Default 0.
 	 */
 	public function start_el( &$output, $data_object, $depth = 0, $args = array(), $current_object_id = 0 ) {
@@ -130,7 +130,7 @@
 	 * @param string  $output      Used to append additional content (passed by reference).
 	 * @param WP_Term $data_object The current term object.
 	 * @param int     $depth       Depth of the term in reference to parents. Default 0.
-	 * @param array   $args        An array of arguments. @see wp_terms_checklist()
+	 * @param array   $args        An array of arguments. See {@see wp_terms_checklist()}.
 	 */
 	public function end_el( &$output, $data_object, $depth = 0, $args = array() ) {
 		$output .= "</li>\n";