Skip to content

Instantly share code, notes, and snippets.

@zackn9ne
Created July 25, 2012 20:09
Show Gist options
  • Select an option

  • Save zackn9ne/3178270 to your computer and use it in GitHub Desktop.

Select an option

Save zackn9ne/3178270 to your computer and use it in GitHub Desktop.
wordpress php elseif
<?php if( is_home() ) : ?>
<meta name="description" content="Web Design, Web Development, and Search Engine Optimization in Columbus, Ohio" />
<?php elseif( is_tag() ) : ?>
<meta name="description" content="You are now checking out all posts about <?php UTW_ShowCurrentTagSet('tagsetcommalist') ?>" />
<?php else : ?>
<meta name="description" content="<?php the_excerpt() ?>" />
<?php endif; ?>
@zackn9ne
Copy link
Copy Markdown
Author

Do as many elseif as you want

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment