next and previous year month and day for archive page

is there php code for next and previous year,month,day link in archive page i just need something like that

-previous [year] next-
-previous [month] next-
-previous [day] next-

im creating a calendar and need those .

Topic next previous calendar archives Wordpress

Category Web


thank u all i just did a simple code to get what i want

<?php 
$prevyear = date('2150') - 0001;
$nextyear = date('2150') + 0001;
$prevmonth = date('01') - 01;
$nextmonth = date('01') + 01;
echo echo get_year_link($prevyear)."<br />".get_year_link($nextyear)."<br />".get_year_link($prevmonth)."<br />".get_year_link($nextmonth)."<br />";
?>

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.