This tutorial shows you how to display your recent posts on a static web page. So now you ask the question ‘Define Static?’ There are a variety of reasons why you may have static pages. If you have built a website from scratch and need a blog or news section. You want to pull some information from the blog to your homepage.
There have been several methods on the web including accessing the database. In this simple, but elegant solution I will show you 2 methods. One of which will be on a page with a .php extension and another will be on a page with a .htm extension.
If you want to display your latest posts on an existing WordPress blog please check out the following post.
Please check out Display your WordPress Recent Posts FAQs that I have set up to go along with this tutorial.

I have recently integrated a news blog into a static website for a charity project I volunteer for. The website was I have recently integrated a news blog into a static website for a charity project I volunteer for. The original website used custom PHP templates. It was only after the build process I added a WP news blog into it. It was easier integrating WordPress around the current design than changing everything. Anyhow the homepage is a static PHP page that fetches the data from a blog/news section which is in a sub-directory.
Prerequisites
I am assuming that you have WordPress installed on a PHP Web Server or are using web hosting. You will need a code editor. I recommend Visual Studio Code. I would recommend that you should have some basic knowledge of PHP, HTML and CSS.
Download
Get Started – Add Recent Posts
First of all, you need to open up your code editor and open the file in which you want to add your WP code snippet. At the top of the page you want to add the following:
<?php require('wp-blog-header.php');
/*if you are getting 404 errors uncomment the next 2 lines*/
//status_header(200);
//nocache_headers();
?>
This loads the WP environment and template. If you have WP installed in a subdirectory then prefix wp-blog-header.php like so:
<?php require('YourSubDirectory/wp-blog-header.php');
/*if you are getting 404 errors uncomment the next 2 lines*/
//status_header(200);
//nocache_headers();
?>
Without this we wouldn’t be able to display our recent posts so please do not skip this step!
Now in the area, you want to display your recent posts insert the following
<?php
$args = array( 'numberposts' => 6,
'post_status'=>"publish",
'post_type'=>"post",
'orderby'=>"post_date");
$postslist = get_posts( $args );
echo '<ul id="latest_posts">';
foreach ($postslist as $post) : setup_postdata($post); ?>
<li><strong><?php the_date(); ?></strong><br />
<a href="<?php the_permalink(); ?>" title="<?php the_title();?>"> <?php the_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
Line 2: The $args
variable holds an array of items. In this case numberposts
is the number of recent posts you want to display. Other arguments include post type, post status and order in which you want to display them. To view more options visit get_posts on the WP Codex.
Line 3: We get our posts and assign the array to a variable called $postslist
Line 5-10: We then start our foreach loop which will grab all the posts. We then wrap each post up in a div element. I have also included the date. The date will only display once there are many posts published on the same day. You can remove the date if not needed. We then display the posts pretty permalink underneath.
Adding to a Non PHP web page
Now to add our blog posts to a .htm or .html page. This requires a little hacking of our .htaccess file which should be in the root folder of your web server.
The htaccess file has a (.) as a prefix so it might not show. In your FTP software ensure that you can view hidden files. Furthermore, make sure you keep a backup to be on the safe side. You may also need to create one if you do not have one already.
In your .htaccess file add the following.
AddType application/x-httpd-php .htm
order allow,deny
deny from all
ErrorDocument 401 https://www.yoursite.com/error/401.html
ErrorDocument 403 https://www.yoursite.com/error/403.html
ErrorDocument 404 https://www.yoursite.com/error/404.html
Line 1 Make sure you use the correct extension. I have used (.htm) in this case but you could change it to (.html) etc:
Lines 6,7,8 Change the directory to which your error pages live. When the page is not available this will redirect to an error page.
Conclusion
I hope you have found this tutorial interesting. If you do have any problems then please contact me. You can also visit the Display your WordPress Recent Posts FAQs section that I have set up to go along with this post. I would also like to hear your success stories.
Discover more from WorldOWeb
Subscribe to get the latest posts sent to your email.
I tried to use this on a wordpress site but it does not work.
I have another wordpress in a subdirectory /food. When I tried the codes above what showed up were the posts from the main wordpress instead of the posts from /food.
Note: I changed the source to ‘food/wp-blog-header.php’
Any ideas or suggestions?
Have you tried the other method? https://www.worldoweb.co.uk/2012/display-wordpress-posts-on-another-wp-blog
Yeah i tried that one and it actually worked. Thanks! 🙂
Your welcome