Category: WP Themes

STI_wp_themes

WordPress Themes Installation & Manage

Theme is the setting that helps you to make the pages look appropriate and attractive. Firstly, you have to sign in to WordPress to know more about WP Themes. Here we log in to...

STI_wp_themes

Create wordpress theme custom page

In wordpress you can create custom page for your theme. Suppose you have a website with different pages and you want to apply different design to each page. WordPress custom page template allows users...

STI_wp_API

Theme Customization API

The Theme Customization API, added in WordPress 3.4, allows developers to customize WordPress’s Theme Customization admin screen. The Theme Customization screen (i.e. “Theme Customizer”) allows site admins to tweak a theme’s settings and see...

STI_wp_themes

Adding Custom page in your theme

A custom page template is a file located in your theme directory. With it, you can change the layout of a page or show different content to the standard page template (e.g. page.php). When...

STI_wp_themes

Adding Comment in your theme

WordPress makes it easy by having a standard commenting system design that comes with every copy of WordPress, and it can be used by any theme. Open up index.php and put the following line...

STI_wp_themes

Adding single file in your theme

At first create a single.php files inside your theme folder . single.php is the single post page, the theme page for displaying just one post. The single.php is what will be used for a...

STI_wp_themes

Adding Widget in your theme

Step 1. Add the following code in functions.php to enable/register widget area in the WordPress theme: Step 2. Add the following code to the area ( sidebar, footer, header ) where you want the...

STI_wp_function

WordPress Functions

In theme design create a functions.php file inside the theme folder. functions.php – This file will contain the code of built in wordpress function and user defined function. Example – Adding Custom menu in your...

STI_wp_function

What is wordpress Loop

WordPress Loop is a block of php functions to display wordpress Post. For example in theme design the first page index.php is generally used to display the list of posts. Below is an example...

STI_wp_themes

Create my first theme

To start building your theme, first create a sub-folder in the wp-content/themes directory in your WordPress folder. After creating the Directory for Theme Folder, create the following files inside folder – header.php – This...