The Admin Area is the administrative area of a WordPress website. Usually it can be accessed by visiting the wp-admin directory in your web browser. Example: http://www.example.com/wp-admin/ The WordPress admin area is the administration center of a WordPress powered website. An administrator has full access… Read More »
Action
An action is a function in WordPress code that is run at certain points throughout the WordPress core. In WordPress code there are numerous pre-defined actions or hooks that allow developers to add their own code at these points. These are a part of what… Read More »
AJAX
AJAX or Asynchronous Javascript and XML, is a group of techniques used in web development which allows a web page to communicate with a server without reloading the page. Using AJAX, applications on the web can exchange data with the server without interfering with the… Read More »
Array
In computer programming languages, an array is a special variable that can hold more than one value under a single name. It is possible to then access the values by referring to an index number or a text key. WordPress is written in the PHP… Read More »
Atom
Atom is a format to publish content in XML to be used by feed readers and news aggregators. This is known as the Atom Syndication Format. WordPress can automatically generate an Atom feed for content and it can be included into the header template to… Read More »
Author
In WordPress, the term author refers to a predefined user role. A user with author role can upload files, write, edit, publish and delete their own articles. They can also edit their profile and change their passwords. Since a user with author role has the… Read More »
Administrator
Administrator is a user role in WordPress. When a user installs WordPress, it creates a new user with the username and password defined during the installation. That first user is assigned the user role of administrator. They can perform all actions on a WordPress website… Read More »
Attachment
The term attachment is used for files uploaded to WordPress from post edit screen. When a file is uploaded using the Add Media button from post edit screen, that file automatically becomes an attachment of that particular post. Files uploaded directly to the Media Library… Read More »
Apache
Apache is the most widely used web server software. Developed and maintained by Apache Software Foundation, Apache is an open source software available for free. It runs on 67% of all webservers in the world. It is fast, reliable, and secure. It can be highly… Read More »
Autosave
Autosave is a feature in WordPress which automatically saves changes made to a post, page, or custom post type. It works on the Post Edit screen. Since version 3.6, WordPress also takes advantage of the local storage feature of user’s browser so that changes can… Read More »