Title: msb2ncsu's Replies | WordPress.org

---

# msb2ncsu

  [  ](https://wordpress.org/support/users/msb2ncsu/)

 *   [Profile](https://wordpress.org/support/users/msb2ncsu/)
 *   [Topics Started](https://wordpress.org/support/users/msb2ncsu/topics/)
 *   [Replies Created](https://wordpress.org/support/users/msb2ncsu/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/msb2ncsu/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/msb2ncsu/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/msb2ncsu/engagements/)
 *   [Favorites](https://wordpress.org/support/users/msb2ncsu/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog on predesigned site](https://wordpress.org/support/topic/blog-on-predesigned-site/)
 *  [msb2ncsu](https://wordpress.org/support/users/msb2ncsu/)
 * (@msb2ncsu)
 * [21 years, 3 months ago](https://wordpress.org/support/topic/blog-on-predesigned-site/#post-147446)
 * I assume they want to have the blog spit out into the body of a pre-existing 
   webpage as if it were a static page.
 * Here is how I did it on mine…
 * — [Insert this into the < head > < /head > of your webpage]–
    <?php /* Don’t 
   remove this line. */ require(‘./wordpress/wp-blog-header.php’); ?>
 * — [Insert this into the < body > < /body > of your webpage]–
 *  <?php while ( have_posts() ) : the_post(); ?>
    <h3><?php the_date(); ?> – <?
   php the_title(); ?></h3> <span><?php the_content(); ?> < a>” title=”Me”><?php
   the_author() ?>< /a> @ <?php the_time() ?> </span> <?php endwhile; ?>
 * — The html is pertinent to my sight and the formatting is how I needed it so 
   just make some minor changes to suit your needs/format. Also in the header bit
   your path to wordpress might be different… mine is “wordpress” right under the
   root HTML directory.

Viewing 1 replies (of 1 total)