Wordpress Core Concepts Flashcards
Q: What is WordPress?
A: WordPress is an open-source content management system (CMS) written in PHP, using MySQL or MariaDB databases.
Q: What are the key features of WordPress?
A: Customisation, SEO-friendly, themes, plugins, user management, media management, and more.
Q: What is the difference between WordPress.org and WordPress.com?
A: WordPress.org is self-hosted and open-source; WordPress.com is a hosted service with limited customisation.
Q: What is the WordPress Codex?
A: The official documentation for WordPress.
Q: What is the latest stable version of WordPress?
A: 6.7.1
Q: What is the purpose of the wp-config.php file?
A: It contains the database configuration and other settings for a WordPress installation.
Q: What is the structure of the WordPress file hierarchy?
A: Key directories include wp-admin, wp-content, and wp-includes.
Q: What is the wp-content directory used for?
A: It stores themes, plugins, and uploaded media files.
Q: What is the role of the wp-includes directory?
A: It contains core WordPress functionality and PHP files.
Q: What is the WordPress database schema?
A: Key tables include wp_posts, wp_users, wp_options, wp_terms, and wp_term_relationships.
Q: What is a WordPress theme?
A: A collection of files that control the design and layout of a WordPress site.
Q: What is a child theme?
A: A theme that inherits functionality from another theme, allowing for safe updates.
Q: What is the purpose of the functions.php file?
A: It allows developers to add custom PHP code to a WordPress theme.
Q: What is the Template Hierarchy?
A: A system WordPress uses to determine which template file to use for a given page.
Q: What is the index.php file?
A: It is the fallback template file in WordPress.
Q: What is a WordPress plugin?
A: A piece of software that adds functionality or features to a WordPress site.