Category: WP Functions

STI_wp_function

Types of Template tags

These tags are used within blog’s Templates to display content dynamically. Template tags are used within themes to retrieve content from your database. The content could be anything from a post title or any...

STI_wp_function

Introductions to Template Tags

The files of WordPress define many useful PHP functions. Some of the functions, known as Template Tags, are defined especially for use in WordPress Themes. There are also some functions related to actions and filters...

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...