Skip to content

Instantly share code, notes, and snippets.

@dylan-k
Last active October 20, 2021 18:22
Show Gist options
  • Save dylan-k/7967872 to your computer and use it in GitHub Desktop.
Save dylan-k/7967872 to your computer and use it in GitHub Desktop.
Conditional Wordpress Sidebar
<?php /* If this is home */ if (is_home()) { ?>
<p style="margin-top: 0pt;"><?php bloginfo('description'); ?> <a href="/about/" title="Read about this website.">More...</a></p>
<?php /* If this is a category archive */ } elseif (is_page()) { ?>
<p style="margin-top: 0pt;"><?php bloginfo('description'); ?> <a href="/about/" title="Read about this website.">More...</a></p>
<a href="http://www.nocategories.net/about/dylan/" title="About Dylan"><img width="100%" src="http://www.nocategories.net/wp-content/themes/eightface/img/dylanprofile.jpg"></a>
<p><?php the_author_description(); ?></p>
<?php /* If this is a category archive */ } elseif (is_category()) { ?>
<p style="margin-top: 0pt;">These entries are part of the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog. You are currently browsing the archives for the <?php single_cat_title(''); ?> topic. <strong>The title of each entry is a link to its full text.</strong></p>
<p><?php echo category_description(); ?><p>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<p style="margin-top: 0pt;">You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives for the day <?php the_time('l, F jS, Y'); ?>.</p>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<p style="margin-top: 0pt;">You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives for <?php the_time('F, Y'); ?>.</p>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<p style="margin-top: 0pt;">You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives for the year <?php the_time('Y'); ?>.</p>
<?php /* If this is a search page */ } elseif (is_search()) { ?>
<p style="margin-top: 0pt;">You have searched the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives for <strong>'<?php echo wp_specialchars($s); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p>
<?php /* If this is a basic archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<p style="margin-top: 0pt;">You are currently browsing the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> weblog archives.</p>
<?php /* If this is postpage */ } elseif (is_single()) { ?>
<p style="margin-top: 0pt;">You are reading an archived entry published in the <a href="<?php echo get_settings('siteurl'); ?>"><?php echo bloginfo('name'); ?></a> archives.</p>
<h3>related entries:</h3>
<ul>
<?php related_posts(5, '<li>', '</li>', false); ?>
</ul>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment