Skip to content

Instantly share code, notes, and snippets.

@plavet
Created July 5, 2014 22:16
Show Gist options
  • Save plavet/fb87ad25dcecdffe0994 to your computer and use it in GitHub Desktop.
Save plavet/fb87ad25dcecdffe0994 to your computer and use it in GitHub Desktop.
Wordpress - Checking blog id
<?php
global $blog_id;
if( $blog_id == 1 ) :
?>
<!--code here-->
<?php endif;?>
<?php if( $blog_id != 1 ):?>
<!--code here-->
<?php endif;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment