Skip to content

Instantly share code, notes, and snippets.

@oliwa
Created November 19, 2015 10:04
Show Gist options
  • Select an option

  • Save oliwa/b4c9e8721aab5ad62f28 to your computer and use it in GitHub Desktop.

Select an option

Save oliwa/b4c9e8721aab5ad62f28 to your computer and use it in GitHub Desktop.
WP Multisite Blog Conditional
<?php global $blog_id; ?>
<?php if( $blog_id == '1' /* Blog 1 */) { ?>
<p>Blog 1</p>
<?php } else if( $blog_id == '2' /* Blog 2 */) { ?>
<p>Blog 2</p>
<?php } else if( $blog_id == '3' /* Blog 3 */) { ?>
<p>Blog 3</p>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment