Skip to content

Instantly share code, notes, and snippets.

@kostajh
Last active December 27, 2015 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kostajh/7343913 to your computer and use it in GitHub Desktop.
Save kostajh/7343913 to your computer and use it in GitHub Desktop.
<?php
$url = get_bloginfo('url');
if ( isset( $wp_query -> query_vars['is_past'] ) )
{
$path = sprintf('<a href=%s/events/><h4>View Upcoming Events</h4></a>', $url);
echo $path;
}
else
{
echo '<a href=sprintf("%s/events/past/", $url)><h4>View Past Events</h4></a>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment