aeropause
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Commenting is Really Slow to PostNo one have any suggestions?
Forum: Fixing WordPress
In reply to: Show last X Post Titles in Blog Post?well I got the plugin installed, published the post with that code you specified, but still nothing ??
Forum: Fixing WordPress
In reply to: Show last X Post Titles in Blog Post?Oh awesome thanks a lot!
Forum: Fixing WordPress
In reply to: Show last X Post Titles in Blog Post?Hey thanks for the reply. It didn’t output anything though, just a blank screen ??
Forum: Fixing WordPress
In reply to: How THis is work?I’m finding this too difficult to setup author and commenters photos in the single page. Here is my code I’m hoping someone can modify it to show me where the tags go plus adding the “$authordata” as I have no idea where that goes. I would really appreciate it:
<?php get_header(); ?>
<!–include sidebar–>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<!–include sidebar–>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
<div id=”content”>
<!–single.php–><!–loop–>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!–navigation–><!–post title–>
<h1 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?></h1>
<p><b>By <?php the_author(); ?></b> | <?php the_time(‘F j, Y’); ?> <span style=”color:#999999″><?php if(function_exists(‘the_views’)) { the_views(); } ?></span></p>
<div class=”postspace2″>
</div>
<!–content with more link–>
<?php the_content(‘<p class=”serif”>Read the rest of this entry »</p>’); ?>
<!–for paginate posts–>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
<p><b>Topics:</b> <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></p>
<div class=”postspace”>
</div>
<!–all options over and out–>
<!–include comments template–>
<?php comments_template(); ?>
<!–do not delete–>
<?php endwhile; else: ?>
Sorry, no posts matched your criteria.
<!–do not delete–>
<?php endif; ?><!–single.php end–>
</div>
<!–include footer–>
<?php get_footer(); ?>