Template Tags/get year link
Материал из WordPress Wiki
Содержание |
Description
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.
Usage
%%% <?php get_year_link('year'); ?> %%%
Examples
Year as Link
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>
Year as a variable
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); ?>
Using With PHP Variables
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>
Parameters
- year
- (integer) The year for the archive. Use '' to assign current year.