In WordPress, functions.php or the theme functions file is a template included in WordPress themes. It acts like a plugin for your WordPress site that’s automatically activated with your current theme. The functions.php file uses PHP code to add features or change default features on… Read More »
Filters
Filters are functions that WordPress uses to pass data through. Passing data through filters allows developers to modify the default behavior of a specific function. Functions used to filter data are called hooks. Filters and Actions together allow developers great flexibility to modify default WordPress… Read More »
Feed
Fluid layout
In WordPress theme development terminology a fluid layout is a layout that uses proportional values as a measuring unit for blocks of content, images, or any other item that is a part of the WordPress theme. This allows the web page to stretch and contract… Read More »
FTP
FTP or File Transfer Protocol is an internet protocol used to transfer files across the internet from one computer to another. For example, when you are installing a software like WordPress on your website, then you will most likely use FTP in order to upload… Read More »
Free Software
Free software is a term coined and promoted by the GNU project and Free Software Foundation. It is used for open source software which allows users to freely look at the source of the software, modify it, distribute it, and use it without any restriction.… Read More »
Featured Image
The Featured Image (also known as post thumbnail) is a WordPress theme feature which allows theme developers to add support for using a representative image for posts, pages, or custom post types. Even though Featured Image is the official term of this WordPress feature, some… Read More »
Filter
A Filter is a function that can be hooked to an event in WordPress (called hooks). During the execution when the event is triggered the filter is applied to the data output generated by the event hook. It is important to remember that filters perform… Read More »
Footer
The term Footer usually refers to the bottom section of a web page in the web design terminology. It usually contains information like copyright notices, links to privacy policy, credits, etc. It may also contain code and scripts that a WordPress theme developer would want… Read More »