Advertisement
brookedot

MobileEPS for WP cookie example

Aug 10th, 2011
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1.  
  2. //add this code to your mobile site to link to the full site. (HTML)
  3. <a href="example.com?view_full_site=true">View Full Site </a>
  4.  
  5.  
  6. //code to add to your full site to show link back to mobile site if they came from the mobile site. (PHP)
  7. <?php
  8. if( isset( $_COOKIE['mobileesp_wp_full_site'] ) )
  9. {
  10. echo ("<a href="example.com?view_full_site=false">View Mobile Site </a>
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement