Reputation: 15
For example. I have already designed above pages and i don't want to use wordpress for About and Contact page and use it only for blog to manage content: About (html) Blog (wordpress) Contact (html) It is possible to connect it like that? Thank you for help!
Upvotes: 0
Views: 319
Reputation: 164
You could serve your site normally and install WordPress in a sub directory. See the official documentation on Giving WordPress Its Own Directory.
Upvotes: 0
Reputation: 1
Yes You Can Do that,
First Create Custom Page Template
<?php
/*
Template Name: About
*/
?>
------Your HTML here------
Next Create a page in Wordpress admin and assign the custom template
Set Custom template Here
Like this, you can create multiple templates for multiple pages
note: Make Sure all Template Files in PHP.
Upvotes: 0