-
-
Save harshclimate/8a04440e7348c88737c42bac93a3c416 to your computer and use it in GitHub Desktop.
Archive functions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Display weekly archives | |
<?php wp_get_archives('type=weekly'); ?> | |
// Last 10 weeks archive | |
<?php wp_get_archives('type=weekly&limit=10'); ?> | |
// Monthly archive with post count | |
<?php wp_get_archives('show_post_count=1'); ?> | |
// Yearly archives | |
<?php wp_get_archives('type=yearly'); ?> | |
// Display all posts by date | |
<?php wp_get_archives('type=postbypost'); ?> | |
// Display all posts alphabetically | |
<?php wp_get_archives('type=alpha'); ?> | |
// Display only top level categories | |
<?php wp_list_categories('depth=1'); ?> | |
// Display Pages and subpages | |
<?php wp_list_pages(); ?> | |
// Display only top level pages | |
<?php wp_list_pages('depth=1' ); ?> | |
// Display tag cloud | |
<?php wp_tag_cloud(); ?> | |
// Display last 30 days post | |
<?php wp_get_archives('type=daily&limit=30'); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment