wp_get_archives_args filter-hookWP 7.0.0

Filters the arguments for displaying archive links.

Usage

add_filter( 'wp_get_archives_args', 'wp_kama_get_archives_args_filter' );

/**
 * Function for `wp_get_archives_args` filter-hook.
 * 
 * @param array $args Arguments.
 *
 * @return array
$args(array<string,)
string|int|bool> $args Arguments.

Changelog

Since 7.0.0 Introduced.

Where the hook is called

wp-includes/general-template.php 2030
$args = apply_filters( 'wp_get_archives_args', $args );

Where the hook is used in WordPress

Usage not found.