How to integrate a WordPress blog in your existing website

How To Integrate A WordPress Blog In Your Existing Website?

WordPress is amazing in its nature. You can convert it into anything and integrate it with any PHP website. You can even set the degree of integration. Like, there may be only a few features of WordPress you want to use when integrating it with your website. For example, you want to display the recent blog posts on your website’s homepage. Your website is in PHP and WordPress blog is installed in another folder. In this article, we will show you the steps that how you can achieve this awesomeness, learning how to integrate a WordPress blog in your existing website?

Before starting with the steps to educate yourself the integration of WordPress Blog in your website, one must know what this web publishing software basically do? And why do you really need to make the WordPress blog after all. So the answer is why not? As the WordPress blog manages the website content beautifully.  As to use this there is not hard fast rule that you have to be a developer or coder, but to use WordPress there are plenty of auto-installer web hosts which are one step away to step and run this easy platform.

So let’s mug up the suggested steps required to integrate a WordPress blog in your existing website and bring in a beautiful WordPress blog page!

Step1

Let’s assume you already have a site running at http://www.yourwebsite.com/ and you want to start a blog for your Product.

Step2

Create a new subdirectory (folder) at your site and call it ‘blog‘. So you now have an empty sub-directory at http://www.yourwebsite.com/blog/.

Step3

Now, download the WordPress framework and upload all of its files into http://www.yourwebsite.com/blog/ and install WordPress on it. If you don’t know how to install WordPress, please read this tutorial.

So, at this point, You have installed WordPress in the blog directory and want to show the recent blog posts on your website’s homepage.

Step4

You need to add the following code snippet at the start of the home page in which you want to utilize WordPress functions.

<?php 
define('WP_USE_THEMES', false);
require('blog/wp-blog-header.php');
?>

Step5

Then the next important thing is the ‘WordPress loop’. If you don’t know what is ‘WordPress loop‘, please read this here.

Put the following code anywhere on your homepage where you want to display the latest posts.

<?php

$number_of_posts = 5;
$args = array( 'numberposts' => $number_of_posts );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent_post ){
echo "<span>".$recent_post['post_date']."</span> <br>";
echo "<h3>".$recent_post['post_title']."</h3>";
echo  "<p>".$recent_post['post_content']."</p><br><br>";

}

?>

Pretty simple, isn’t it? This way you can use every functionality of ‘WordPress’, but you should have an idea of how things can be done in ‘WordPress’.

If you are having any difficulties while integrating your website with a WordPress blog, please feel free to ask below in the comments section.

Thanks, Good luck!

40 thoughts on “How To Integrate A WordPress Blog In Your Existing Website?”

  1. So I’ve recently just started learning html,css, javascript and I made my first website. I would now like to put a wordpress blog on the site. If possible I’d like to full integrate it so it looks like just another page on the website.

    Is this possible? and whats the best way to do it.

  2. Hello

    Thanks for the tutorial, I have a bespoke website based on PHP.
    I have done below so far
    1- installed wordpress in subdirectory called /blog
    2- all the components have been correctly downloaded.
    Could somebody let me know how to add blog button/click in the home page where shop online, gallery, services, contact us etc are residing?
    I am not sure what the script would be.
    Thanks

    Thank you

  3. Hi, there! Thanks for the helpful post!

    I am trying to figure out how to use apply_filters or get_the_content() on each post processed by the above script so that the tags and other formatting in the original post are preserved. I can created a new variable, such as $content, and feed it the formatted content like so, I believe:

    $content = get_the_content();

    But how do I get that statement in to the foreach process you use in this example? Any help appreciated!

    – Brock

  4. i want to display blog content as well as their respective images. guide me how to display img along the content.

  5. Hi there. I have been using the above code to embed recent posts into a section on my website. However, I’m not sure what happened or when it happened, but for sometime now, when I make a blog entry, when it appears in the embedded section of my website, the following code appears above the photo: “[caption ID= ” and then the relevant code. So now I just delete this code and a tag for each photo and it’s fine. But this is time consuming. This used to never happen. It only happens when I add captions to the photos. There also used to be a link to go to the archives. Any suggestions would be greatly appreciated. Here’s a link to the page: https://sanctuarycruises.com/captains_log.php

  6. This is a helpfull posting and it makes live easier.
    But what if I have TWO seperate WP installations I want to show posts from.
    How do I separate them.
    Ant suggestions are (more than) welcome.

  7. We have created a website in php all thing is fine. We have installed a blog of wordpress in directory /blog
    when we are trying to set urrl of our existing website by default it appears /blog in all urls can you suggest me to remove it

  8. Hey how do I add a wordpress blog to my already existing site? I already have it on a subfolder and want it accessible from main website

  9. Hi! i come to your site by searching it on google and i found this tutorial is really helpful but still i have a question in my mind that without database how can i call the WordPress blog on my html website.

  10. hi

    this was very helpful
    How to integrate a WordPress featured image blog in your existing website?
    in this code we hava title,time,content;i want to add featured image to every post???

  11. I have been looking for a way to include WP blogs from numerous member WP sites. Into our Main Joomla site.
    Can you provide us any advice / assistance?

  12. Hi !

    Thanx for the tip. I’ve got a question. When I’m installing WordPress in the folder /blog/ do I connect it to the same Data base that my MAIN web site is connected or I can use a different database ?

    Thanx a lot in advance

  13. Hi, there! Thanks for the helpful post.
    I Just copy and paste above code. Its complied successfully.
    But I need to display an recent posts id and featured image also in my php site. How can I do? Please give an suggestion for my query ..

  14. Very useful post about web application development. The blog was absolutely amazing! A lot of information which can be useful for technology readers, Keep it up. Even the Prologic Technologies is an interactive digital agency. Expertise in delivering bespoke web and mobile applications, eCommerce platforms, telehealth solutions, UI/UX design, and Alexa skills & chatbots.

  15. Your Post and tutorial is superb, It worked like magic.
    But I need one more thing. how will i get the post thumbnail image, or the featured image url

  16. hi my question is, can i integrate a wordoress. com blog to my existing wp based own managed web site..
    why?
    i can post to wp. com with an android app. easy when i am travveling without a pc. then it passes to my own web sites blog section?

    can i do that?

  17. Can I connect a WordPress.com blog to my existing website or will I need to use a WordPress.org blog for it to connect?
    Thanks!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.