Skip to content

Instantly share code, notes, and snippets.

@kostajh
Last active December 27, 2015 14:49
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/7343536 to your computer and use it in GitHub Desktop.
Save kostajh/7343536 to your computer and use it in GitHub Desktop.
<?php
if ( isset( $wp_query -> query_vars['is_past'] ) ) {
$url = bloginfo('url');
echo <a href=sprintf("%s/events/", $url)><h4>View Upcoming Events</h4></a>;
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