[Plugin: Featured Content Gallery] Pluging forces homepage to only show featured posts – Not latest
-
This code:
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
I was finally able to get working, however, there are serious issues that I’m still at a loss to resolve.
In Featured Content Gallery Configuration, going to section “Select here to use category selection” and turning on radio button that says “Category Name“, then inputing the category name “Favourites” does now work. The Featured Content Gallery, does display images (articleimg) for posts only in favourites category – Good!
But… the homepage that was set to display “Your latest posts” – Configured in:
Dashboard >> Settings >> Reading
No longer works! It only shows posts from the Favourites category.
If I delete the code:
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
Then everything works properly!
Here’s what the complete snippet looks like in header.php file:
<!-- header START --> <div class="container_12"> <div id="header-wrap"> <div class="header"> <div id="search-bar"> <?php include (TEMPLATEPATH . '/searchform.php'); ?> </div> <h1><a href="<?php echo get_option('home'); ?>/"> <?php bloginfo('name'); ?> </a></h1> <div class="description"> <?php bloginfo('description'); ?> </div> <div style="clear: both"></div> </div> <div id="nav-bar"> <div id="navbar-left"> <ul id="nav"> <?php wp_list_categories('exclude=1,4,12,7,8,10,653&title_li='); ?> <?php wp_list_pages('exclude=38,1211,1227,1397,1444,1489&title_li='); ?> <li><a href="https://xxxxxxxx.com/xxxxxxxx">Twitter</a></li> <li><a href="<?php bloginfo('rss_url'); ?>">Subscribe</a></li> </ul> </div> <div id="navbar-right"> <a href="<?php bloginfo('rss_url'); ?>"><img src="<?php bloginfo('template_url'); ?>/images/rss.gif" alt="Subscribe to <?php bloginfo('name'); ?>" /></a> </div> </div> <div style="clear: both"></div> <div> <?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?> </div> <div style="clear: both"></div> <div id="alignbar"></div> </div> <!-- header END -->
Anyone encounter this issue before? Or more to the point, have a fix or work around?
- The topic ‘[Plugin: Featured Content Gallery] Pluging forces homepage to only show featured posts – Not latest’ is closed to new replies.