- Code: Select all
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>

However, in order to get the layout and design to look better and work in the way I want it, I need to move the code to the Header.php.
When I do that, the layout looks good, but the "BODY" will now only show the posts that are in the FCG

There's also that werid spacing issue, but I can get that part figured out myself. The plug-in is of no use to me in this form, but it is also the best solution for what I want to do.
CAN YOU PLEASE HELP!?
Here is the Header.php code with the FCG code in place.
HEADER.PHP CODE
- Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title>Major Spoilers</title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/print.css" type="text/css" media="print" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="apple-touch-icon" href="http://www.majorspoilers.com/majorspoilerspicon.png">
<link rel="shortcut icon" href="http://www.majorspoilers.com/favicon.ico" type="image/x-icon" />
<script type="text/javascript" language="javascript" src="<?php bloginfo('template_directory'); ?>/js/hmenu.js"> </script>
<?php wp_head(); ?>
</head>
<body>
<div id="page">
<a href="http://www.majorspoilers.com"><img src="http://www.majorspoilers.com/wp-content/themes/majorspoilers/images/squarelogo.jpg" align="left" /></a>
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
<hr />
And here is the Main Index page code
MAIN INDEX.PHP CODE
- Code: Select all
<?php get_header(); ?>
<?php include( TEMPLATEPATH . '/menu.php' ); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?>--by <?php the_author() ?></small>
<div class="entry">
<?php the_content('<span class="moretext"> More After the Jump »</span>'); ?>
</div>
<p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<?php
if (function_exists('wp_pagebar'))
wp_pagebar();
?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Thanks so much to ANYONE who can help me solve this MAJOR issue.








