This is the Step 4 of Tutorial How to Convert Bootstrap 4 Templates to Wordpress Themes . In this step we will get started our Theme Development on top of Underscore starter theme.

# Adjust Permalinks Settings

Before we start with the development, Let's adjust the permalink's settings to have a different format of custom URL than the default.

Wordpress Custom Permalinks

Go to Settings > Permalinks .  And Change the Custom URL to Post Name.

# Add Home Page Template

Open your editor (I am using PhpStorm) and add the Theme folder freelancerb2w as a project in editor.

On adding the theme folder in your editor, you should see the following file structure.

 

These are the files provided by underscore theme development. Since we are not developing a full blog based template in wordpress, we won't  care about many of these files

To get started with the home page development of our Bootstrap template into wordpress. Follow these steps.

  1. Copy page.php to create a new page named page-home.php , This page will be used as our home page template.
  2. Add following comment on the top of page-home.php
<?php
/*
	Template Name: Home Page
*/

Note : The comment is important, since this will create a new template option for us in Wordpress Dashboard.

# Create New Page in Wordpress Dashboard

Next, Login to Wordpress Admin and Go to Wordpress Dashboard. Go to Pages in left navigation and click "Add New"

 

On the right side of this page, you should see a box with title Page Attributes. Under the Template drop down, select Home Page. This is the template page-home.php, which we added in the last step. Wordpress picked the template name from the comment we added on the top of the page.

template drop down wordpress

Select Home Page from the drop down, leave the content area blank and hit Publish.

You have now created a page that you can access from /home , with template page-home.php in the backend.

Well Done ! Let's move further.

# Change default Home Page

Since our bootstrap template is a single page website, we will show our newly create /home page as the default homepage.

Go to Settings > Reading , Under Reading Settings select Home Page for your homepage displays settings.

wordpress default homepage settign

Click Save Changes.

That's All with Getting Started, In the Step 5 : We will start moving our Assets from Static Bootstrap Template to Wordpress Theme. 

See you in the next step.

Comments