Role of style.css in a WordPress Theme
Darshan Saroya

Role of style.css in a WordPress Theme

The style.css is a required file in any WordPress theme. You can include additional CSS files in your theme, but there must be one with this filename, style.css in the root folder. Not only this file is must have, but also begin with a comment block containing the theme’s description. As in the previous post, I […]

7 years ago
Read More
Creating Simple WordPress Theme
Darshan Saroya

Creating Simple WordPress Theme

By creating simple WordPress theme, we can easily understand the WordPress mechanism. In this post, we develop a WordPress theme from scratch. Here I just give you code that you have to add in theme templates. By doing so you get the basic idea about the working system of a WordPress theme. Points to remember while […]

7 years ago
Read More
template hierarchy wordpress
Darshan Saroya

Template Hierarchy-how a WordPress theme works

Before start developing a WordPress theme, one should know how a WordPress theme works. WordPress theme follows a particular template hierarchy. That means you have to follow some template related conditions to make a perfect theme. Template hierarchy makes manipulation of data to a very easy level. Like, make category.php template to fetch category related data. […]

7 years ago
Read More
WordPress theme development
Darshan Saroya

Things to know before Developing a WordPress Theme

Hello friends, in this post we just know about the things that should one keep in his mind before jumping to theme development. WordPress theme is not just a simple HTML packed code, it more than that. So, let get the start. Use validated HTML Template The first thing you need is an HTML template. […]

7 years ago
Read More