Browsing Category

PHP AND WORDPRESS

What is: Home Page

The term home or home page is used in web development to refer to the the main page of a web site. It is often used in the navigation menus and other user interface elements of the website to direct users to the main page. By default, a…

What is: .htaccess

The .htaccess file is a configuration file read by the server. It is able to override many server configuration settings and can be used for authorization, cache control, website optimization, and URL rewriting. In WordPress, the .htaccess…

What is: Hooks

In WordPress theme and development, Hooks are functions that can be applied to an Action or a Filter in WordPress. Actions and Filters in WordPress are functions that can be modified by theme and plugin developers to change the default…

What is: GitHub

GitHub is a project hosting service online. It is free to use for Open Source projects, and there are also paid plans available for private projects. Currently, GitHub is the most popular code-hosting service among open source developers…

What is: 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…

What is: Filter

In WordPress, filters are functions that can be hooked to an event (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…

What is: 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…

What is: 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…

What is: 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…

What is: functions.php

functions.php or the theme functions file is a template used by WordPress themes. It acts like a plugin and gets automatically loaded in both admin and front-end pages of a WordPress site. Usually this file is used to define functions,…