Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter bwhiting

    (@bwhiting)

    <?php
    define('WP_USE_THEMES', false);
    require('/about/wp-blog-header.php');
    ?>
    
    //Get the last 3 posts.
    <?php query_posts('showposts=3'); ?>
    <?php while (have_posts()) : the_post(); ?>
    <a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
    <?php endwhile;>

    would this work instead for the actual coding or would it require a whole new set of codes to do so? because i am thinking that the actual link to the blog-header.php file is correct but it seems to not want to open in my dreamweaver to check the links too

Viewing 1 replies (of 1 total)