Advertisement
brookedot

Untitled

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