Remove conditional feed in head.php

Since most sites will have a blog, simply remove the feed link if
you don't want to include it.
This commit is contained in:
Ben Word
2013-02-04 20:12:07 -06:00
parent 9042be77fa
commit cbbb23f1b9

View File

@@ -15,7 +15,5 @@
<?php wp_head(); ?>
<?php if (wp_count_posts()->publish > 0) : ?>
<link rel="alternate" type="application/rss+xml" title="<?php echo get_bloginfo('name'); ?> Feed" href="<?php echo home_url(); ?>/feed/">
<?php endif; ?>
</head>