Skip to content

Instantly share code, notes, and snippets.

@ninetwentyfour
Created August 28, 2011 16:54
Show Gist options
  • Save ninetwentyfour/1176902 to your computer and use it in GitHub Desktop.
Save ninetwentyfour/1176902 to your computer and use it in GitHub Desktop.
Use WordPress’ is_page() To Exclude Content - blogpost
<?php
if ( is_page('work') || is_page('contact')) {
echo '<div id="secondnav"><div class="secondnavs"><a href="http://www.travisberry.com/video/">Video</a></div><div class="longsecondnavs">.</div></div>';
}
?>
<?php
if ( is_page('blog')) {
echo '<link rel="stylesheet" href="http://whereeveryouputthenewcssfile.css" type="text/css" media="screen" />';
}
?>
#secondnav{
display:none !important;
}
<?php
/*
Template Name: NoNav
*/
?>
<?php
body_class();
?>
#page-id-2 #secondnav {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment