• <?php
    /*Include WordPress
    define('WP_USE_THEMES', false);
    require('./wp5/wp-blog-header.php');
    query_posts('showposts=7');
    ?>*/
    <?php
    require('./wp5/wp-blog-header.php');
    ?>
    <?php
    $posts = get_posts('numberposts=7&order=ASC&orderby=post_title');
    foreach ($posts as $post) : start_wp(); ?>
    <?php the_date(); echo "<br />"; ?>
    <?php the_title(); ?>
    <?php the_excerpt(); ?>
    <?php
    endforeach;
    ?>
Viewing 1 replies (of 1 total)
  • Try:

    <?php
    /*Include WordPress
    define('WP_USE_THEMES', false);
    require('./wp5/wp-blog-header.php');
    $posts = get_posts('numberposts=7&order=ASC&orderby=post_title');
    foreach ($posts as $post) : start_wp(); ?>
    <?php the_date(); echo "<br />"; ?>
    <?php the_title(); ?>
    <?php the_excerpt(); ?>
    <?php
    endforeach;
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘is this the same code entered twice?’ is closed to new replies.