chino29
I don’t really understand where each code goes?
Please help me with this. If I understand right I have to put first code to the main index.php at the top, and then I confused.. I’ve tried few variation but none of them really worked..((
Here is my index.php with code added:
php
// Include WordPress
define('WP_USE_THEMES', false);
// Change path below to location of wp-blog-header.php on server
require('/home/username/public_html/blog/wp-blog-header.php');
// Change number below to show 1 or more post excerpts
query_posts('showposts=1');
?>
<?php get_header(); global $wp_theme_options; ?>
<?php do_action('before_content'); ?>
<!--index.php-->
<div class="<?php do_action('content_style'); ?>" id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); // the loop ?>
<!--Post Wrapper Class-->
<div <?php if (function_exists('post_class')) { post_class(); } else { echo 'class="post"'; } ?>>
<!--Title/Date/Meta-->
<div class="title wrap">
<div class="date">
<div class="month"><?php the_time('M'); ?></div>
<div class="day"><?php the_time('d'); ?></div>
</div>
<div class="post-title">
<h3 id="post-<?php the_ID(); ?>">" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></h3>
By
<span class="meta-author"><?php the_author_posts_link(); ?></span>
· Comments
<span class="meta-comments"><?php comments_popup_link('(0)', '(1)', '(%)'); ?></span>
</div>
</div>
<!--post text with the read more link-->
<?php the_content('Read More→'); ?>
<!--post meta info-->
<div class="meta-bottom wrap">
<div class="alignleft"><span class="categories">Categories : <?php the_category(', ') ?></span></div>
<div class="alignright"><span class="comments">Comments <?php comments_popup_link('(0)', '(1)', '(%)'); ?></span></div>
</div>
</div><!--end .post-->
<?php endwhile; // end of one post ?>
<!-- Previous/Next page navigation -->
<div class="paging clearfix">
<div class="alignleft"><?php previous_posts_link('« Previous Page') ?></div>
<div class="alignright"><?php next_posts_link('Next Page »') ?></div>
</div>
<?php else : // do not delete ?>
<div class="post">
<h3><?php _e("Page not Found"); ?></h3>
<p><?php _e("We're sorry, but the page you're looking for isn't here."); ?></p>
<p><?php _e("Try searching for the page you are looking for or using the navigation in the header or sidebar"); ?></p>
</div>
<?php endif; // do not delete ?>
</div><!--end #content-->
<?php do_action('after_content'); ?>
<?php get_footer(); //Include the Footer ?>
Thank you for your help!