From 4e8ed85951daf834eb2151c907907fc786697bc7 Mon Sep 17 00:00:00 2001 From: Kirtan Gajjar <8456197+kirtangajjar@users.noreply.github.com> Date: Mon, 8 Jul 2024 23:46:05 +0530 Subject: [PATCH] Update filter doccomment --- includes/utils.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/includes/utils.php b/includes/utils.php index 4251c5b5e..43c88dca7 100644 --- a/includes/utils.php +++ b/includes/utils.php @@ -565,9 +565,11 @@ function generate_taxonomy_links( $taxonomy, $post, $terms = [] ) { * @since 2.0.5 * @hook dt_taxonomy_links * - * @param string[] $term_links Array of term editing links. - * @param string $taxonomy Taxonomy name. - * @param WP_Term[] $terms Array of term objects appearing in the post row. + * @param {string[]} $term_links Array of term editing links. + * @param {string} $taxonomy Taxonomy name. + * @param {WP_Term[]} $terms Array of term objects appearing in the post row. + * + * @return {string[]} Array of term editing links. */ $term_links = apply_filters( 'dt_taxonomy_links', $term_links, $taxonomy, $terms );