Advertisement
Apina

CTA Events Template venue link idea

Oct 21st, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. //probably not needed but lets put the name in a variable
  3. $x = stripslashes_deep($event->venue_name);
  4.  
  5. //now lets make the name into a post/page slug
  6. $y = strtolower( str_replace(' ', '-', $x) );
  7.  
  8. //now combine them in a link
  9. echo '<a href="http://supersportsevents.me/' . $y . '">' . $x . '</a>';
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement