wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_archives › WordPress Function

Seit0.71
Veraltet2.1.0
get_archives ( $type = '', $limit = '', $format = 'html', $before = '', $after = '', $show_post_count = false )
Parameter: (6)
  • (string) $type
    Erforderlich: Nein
    Standard: (leer)
  • (string) $limit
    Erforderlich: Nein
    Standard: (leer)
  • (string) $format
    Erforderlich: Nein
    Standard: 'html'
  • (string) $before
    Erforderlich: Nein
    Standard: (leer)
  • (string) $after
    Erforderlich: Nein
    Standard: (leer)
  • (bool) $show_post_count
    Erforderlich: Nein
    Standard: false
Siehe:
Gibt zurück:
  • (string|null)
Definiert in:
Codex:

Retrieves a list of archives.



Quellcode

function get_archives($type='', $limit='', $format='html', $before = '', $after = '', $show_post_count = false) {
	_deprecated_function( __FUNCTION__, '2.1.0', 'wp_get_archives()' );
	$args = compact('type', 'limit', 'format', 'before', 'after', 'show_post_count');
	return wp_get_archives($args);
}