PHP Question

Out of context: Reply #11

  • Started
  • Last post
  • 11 Responses
  • hubb7designs0

    On line 1 of the index.php I have:

    <?php
    // Include Wordpress
    define('WP_USE_THEMES', false);
    require('./blog/wp-load.php');
    query_posts('showposts=3');
    ?>

    Then for the section that contains the summary of the last blog post I have:

    <div id="fromtheblog">
    <h1 class="blog">from the blog</h1>
    <?php while (have_posts()): the_post(); ?>
    <h5><?php the_title(); ?></h5>
    <?php the_excerpt(); ?>
    <p<a href="<?php the_permalink(); ?>">Read more...</a></p>
    <br />
    <?php endwhile; ?>
    </div>

View thread