-
Notifications
You must be signed in to change notification settings - Fork 1
justincwatt/wp-adjacent-archive-links
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
=== Adjacent Archive Links === Contributors: justincwatt Donate link: http://justinsomnia.org/2012/11/adjacent-archive-links-for-wordpress/ Tags: archive, archives, date archives, template tag, navigation Requires at least: 3.0 Tested up to: 4.2.2 Stable tag: trunk License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Adds two new template tags to output previous and next links on date archive pages. == Description == After activating the plugin, you will have two new template tags at your disposal: `<?php previous_archive_link( 'format', 'link' ); ?>` `<?php next_archive_link( 'format', 'link' ); ?>` They adapt their output depending on whether the date archive is a day, a month, or a year, and they will only output a link for an adjacent time period in which you have published posts. Both tags take two string parameters, *format* and *link*. The *format* parameter defines what comes before and after the link. In it, `%link` will be replaced with whatever is declared in the link parameter below. `previous_archive_link` defaults to "`« %link`" and `next_archive_link` defaults to "`%link »`". The *link* parameter defines the link text. Both tags default to "`%date`", the adjacent archive page's localized date. If you're interested in contributing to the code behind this plugin, it's also hosted on GitHub: https://github.com/justincwatt/wp-adjacent-archive-links == Installation == 1. Extract the zip file, drop the contents in your wp-content/plugins/ directory, and then activate from the Plugins page. 1. Edit your theme file (e.g. archive.php) and add the template tags `<?php previous_archive_link(); ?>` and `<?php next_archive_link(); ?>` == Frequently Asked Questions == = How do I make my date archives show all posts for that time period in chronological order, rather than just 10 at a time? = Just add `query_posts($query_string . '&showposts=1000&order=asc');` to the archive.php template right under the header call. == Screenshots == 1. This is an example of how it looks on a date archive page customized to only show post titles in chronological order. == Changelog == = 3.0 = * Fixed issue where date strings were appearing non-localized (in en_US only) * Added Spanish localization (Hat tip: Andrew Kurtis of WebHostingHub) = 2.0 = * Fixed use of wpdb->prepare for WordPress v3.5 (Hat tip: Jonathan Patt) * Improved output of custom previous/next archive hrefs (Hat tip: Trevor Morris) * Added the ability to apply filters to the output of both functions (Hat tip: Trevor Morris) = 1.0 = * Initial version == Upgrade Notice == = 3.0 = Better localization support = 2.0 = Updated for WordPress 3.5 = 1.0 = Initial version
About
A WordPress plugin that outputs previous and next date archive links
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published