Codex tools: Log in / create account
Contents |
Returns the yearly archive URL to a specific year for use in PHP. It does NOT display the URL. If year is set to '', the tag returns the URL for the current year's archive.
<?php get_year_link('year'); ?>
Returns the URL for the current year's archive, displaying it as a link in the anchor tag by using the PHP echo command.
<a href="<?php echo get_year_link(''); ?>">Posts from this year</a>
Returns URL for the archive year 2003, assigning it to the variable $year03. The variable can then be used elsewhere in a page.
<?php $year03 = get_year_link(2003); ?>
PHP code block for use within The Loop: Assigns year to the variable $arc_year. This is used with the get_year_link() tag, which returns the URL as a link to the yearly archive for a post, displaying it within an anchor tag with the PHP echo command. See Formatting Date and Time for info on format strings used in get_the_time() tag.
<?php
$arc_year = get_the_time('Y');
?>
<a href="<?php echo get_year_link($arc_year); ?>"><?php the_time('Y') ?> archive</a>
edit_post_link, edit_comment_link, link_pages, wp_link_pages, get_year_link, get_month_link, get_day_link