Title: 's Replies | WordPress.org

---

# core3duo

  [  ](https://wordpress.org/support/users/core3duo/)

 *   [Profile](https://wordpress.org/support/users/core3duo/)
 *   [Topics Started](https://wordpress.org/support/users/core3duo/topics/)
 *   [Replies Created](https://wordpress.org/support/users/core3duo/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/core3duo/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/core3duo/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/core3duo/engagements/)
 *   [Favorites](https://wordpress.org/support/users/core3duo/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [HELP in DECODE file](https://wordpress.org/support/topic/help-in-decode-file/)
 *  [core3duo](https://wordpress.org/support/users/core3duo/)
 * (@core3duo)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/help-in-decode-file/#post-1129189)
 *     ```
       ?><?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)