Advertisement
prasannasp

Remove adsense on homepage

Oct 14th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2. function graphene_remove_adsense_home(){
  3. if(is_front_page()) {
  4.    global $graphene_settings;
  5.    $graphene_settings['show_adsense'] = false;
  6.     }
  7. }
  8. add_action( 'template_redirect', 'graphene_remove_adsense_home' );
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement