I need the help please.
The plugin is not working properly. Appears all the images below. Look: http://www.mugglearmypt.com/
Code:
- Code: Select all
<?php get_header(); ?>
<body>
<div id="page2">
<div id="header">
<div class="logo">
<h1><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>
</div>
<!--/logo-->
<div class="topnav">
<ul>
<?php
if(function_exists('wp_nav_menu')) {
wp_nav_menu( 'depth=1&theme_location=menu_1&menu_id=pagemenu&container=&fallback_cb=menu_1_default');
} else {
menu_1_default();
}
function menu_1_default()
{
?>
<ul id="pagemenu">
<li
<?php if(is_home()) { ?> class="current_page_item" <?php } ?>><a href="<?php echo get_option('home'); ?>/">Home page</a>
</li>
<?php wp_list_pages('depth=1&sort_column=menu_order&title_li=' ); ?>
</ul>
<?php
}
?>
</ul>
</div>
<!--/topnav-->
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
<!--/header -->
<div id="columns">
<div id="centercol">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="box post" id="post-<?php the_ID(); ?>">
<div class="content">
<div class="clr"></div>
<div class="post-pic" style="margin-top:10px;">
<a href="<?php the_permalink();?>"><img src="<?php echo get_post_meta($post->ID, 'thumbnail', true);?>" alt="Post Pic" width="274" height="181" /></a>
<div class="postby">
<?php the_author_posts_link(); ?><?php if (current_user_can('edit_post', $post->ID)) { ?> | <?php edit_post_link('Edit', '', ''); } ?>
</div>
<div class="post-dates"><div class="post-date">
<h1><?php the_time('d'); ?></h1><h2><?php the_time('M'); ?></h2><h3><?php the_time('Y'); ?></h3></div></div>
<div class="clr"></div>
</div>
<div class="post-title">
<h2><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<!--/post-title -->
</div>
<!--post-date -->
<div class="post-excerpt">
<p><?php the_content_rss('', TRUE, '', 50); ?></p>
</div>
<!--/post-excerpt -->
<div class="clr"></div>
<div class="social-links">
<div class="comments"><?php comments_popup_link('(0)', '(1)', '(%)'); ?> Comments</div>
<div class="caty"> <?php the_category(', '); ?></div>
</div>
<!--/social-links -->
</div>
<!--/content -->
<div class="clr"></div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<div class="clr"></div>
<div class="wp-pagenavi" style="width:545px;color:#ed2b50; text-align:center;padding:10px 10px;"> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
<div class="alignright" style="float:right;font-weight: bold;"><?php next_posts_link('Older Entries »') ?></div>
<div class="alignleft" style="float:left;font-weight: bold;" ><?php previous_posts_link('« Newer Entries') ?></div>
<?php } ?> <div class="clr"></div>
</div>
</div>
<!--/centercol -->
<?php get_sidebar(); ?>
<div class="clr"></div>
</div>
<!--/columns -->
<div class="clr"></div>
</div>
<!--/page -->
<?php get_footer(); ?>
Settings:










