Forum Replies Created

Viewing 1 replies (of 1 total)
  • ?><?php get_header(); ?>
    <div class="wpn_left">
    	<?php if (have_posts()) : ?>
    
    		<!-- Featured Posts // -->
    		<span class="wpn_heading">Featured Posts<a class="wpn_toggle-expand wpn_toggle-hide" href="#"></a></span>
    		<div class="wpn_featured wpn_expandable">
    			<!--
    				START Featured Content Slideshow
    
    				// Configuration can be found under WordPress Settings > Featured Content Gallery
    
    				Gallery Width in Pixels: 586
    				Gallery Height in Pixels: 209
    				Text Overlay Height in Pixels: 35
    				Gallery Border Color (#hex or color name): #FFF
    				Gallery Background Color (#hex or color name): #666
    				Slide Display Duration (milliseconds): 5000
    				Slide Fade Duration (milliseconds): 200
    				Carousel Button Name: Thumbnails
    				Slide Transition Type - Choose your slide transition effect: Slide Left with Fade
    
    				//
    				-->
    			<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
    			<!--
    				END Featured Content Slideshow
    			-->
    		</div>
    		<!-- // Featured Posts -->
    
    		<!-- News & Updates // -->
    		<span class="wpn_heading">News & Updates<a class="wpn_toggle-expand wpn_toggle-hide" href="#"></a></span>
    		<div class="wpn_expandable">
    			<ul class="wpn_news">
    			<?php while (have_posts()) : the_post(); ?>
    				<li <?php post_class() ?> id="post-<?php the_ID(); ?>">
    					<a class="wpn_title" href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
    					<div class="wpn_info">
    						<?php echo get_avatar( get_the_author_email(), '40' ); ?>
    						by <?php the_author_posts_link() ?><br />
    						Posted <?php the_time('F jS, Y \a\t g:i a') ?>
    					</div>
    					<?php
    					$thumb = get_post_meta($post->ID, "thumbnail", true);
    					if($thumb)
    					echo '<img class="wpn_thumb" src="'.$thumb.'" alt="" />';
    					?>
    					<div class="wpn_post">
    						<?php wpn_content_limit(get_the_content(),500); ?>
    					</div>
    					<div class="wpn_bottom">
    						<a class="wpn_comments" href="<?php the_permalink() ?>#comments"><strong><?php comments_number(__('0'), __('1'), __('%')); ?></strong> Comments</a>
    						<a class="wpn_continue" href="<?php the_permalink() ?>">Continue Reading</a>
    					</div>
    				</li>
    			<?php endwhile; ?>
    			</ul>
    			<!-- Page Navigation -->
    			<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
    		</div>
    	<!-- 404 Error -->
    	<?php else : include ('editable/404/404-error.php'); endif; ?>
    	<div class="wpn_clear"></div>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?><?
Viewing 1 replies (of 1 total)