Browsing Category

PHP AND WORDPRESS

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

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

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

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

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

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

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

What is: Admin Area

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…