Michal
Michal

Reputation: 15

It's possible to connect static html subpages with wordpress page?

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

Answers (2)

Adam Rehal
Adam Rehal

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

Y.Srinivas Reddy
Y.Srinivas Reddy

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

Related Questions