wp_sitemaps_users_entry

wp_sitemaps_users_entry

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_sitemaps_users_entry') is found 1 times:

  • /wp-includes/sitemaps/providers/class-wp-sitemaps-users.php line 81
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
             *
             * @param array   $sitemap_entry Sitemap entry for the user.
             * @param WP_User $user          User object.
             */
            $sitemap_entry = apply_filters( 'wp_sitemaps_users_entry', $sitemap_entry, $user );
            $url_list[]    = $sitemap_entry;
        }
     
        return $url_list;
    }