Wordpress Flashcards
How do you install Wordpress?
It consists of copying files into a directory, creating a database and navigating through an installation wizard.
http://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Install
Wordpress started off as a _______ platform that enabled users to _____ and ____ posts.
Wordpress started off as a blogging platform that enabled users to create and edit posts.
It has since evolved into a ________ _______ _______ that enables users to modify _____ and ______.
It has since evolved into a Content Management System that enables users to modify pages and content.
WordPress’s ______ architecture allows for heavy customization to the _______ and _______ of the site. The _______ system allows third party developers to extend the ______ functionality of WordPress to create almost anything that is required.
WordPress’s modular architecture allows for heavy customization to the design and functionality of the site. The plugin system allows third party developers to extend the core functionality of WordPress to create almost anything that is required.
WordPress’s admin panel contains _____ required to modify WordPress _____, ______ and __________.
WordPress’s admin panel contains tools required to modify WordPress data, design and functionality.
The WP admin area allows us to manage _____ and ______, ______, _______, ______ and _____.
_________ and ________ of plugins are also managed in the admin. While we can modify files in the admin, we can also modify the _____ files themselves. Therefore, when working across multiple _________, it would be wise to maintain consistency: either do one of the other.
The WP admin area allows us to manage posts and pages, files, content, menus and themes.
Installation and configuration of plugins are also managed in the admin. While we can modify files in the admin, we can also modify the raw files themselves. Therefore, when working across multiple environments, it would be wise to maintain consistency: either do one of the other.
WordPress is a _______ tool that has the author in mind. It comes with ______ options (private/public), ______ options (draft, pending review and published), and _______. _________ on posts and pages can be _______ as required.
WordPress is a publishing tool that has the author in mind. It comes with visibility options (private/public), publish options (draft, pending review and published), and previews. Commenting on posts and pages can be disabled as required.
Posts are regular ________ entries, listed in _________ order. Posts may have different ________ (such as image, links, quotes etc). Posts can be ________ and ________.
Posts are regular content entries, listed in chronological order. Posts may have different formats (such as image, links, quotes etc). Posts can be categorized and tagged.
There are different post types. Custom post types can be created. http://codex.wordpress.org/Post_Types
Pages are typically ______ of content that can be treated as a whole.
Pages are typically blobs of content that can be treated as a whole.
You can use ______ or ______ snippets to extend the ________ of both content types.
You can use plugins or code snippets to extend the functionality of both content types.
List the key differences (by default) of content types (5):
- Posts are timely vs. Pages are timeless.
- Posts are social vs. Pages are NOT.
- Posts can be categorized vs. Pages are hierarchical. (Categories can be hierarchical)
- Posts are included in RSS feed vs. Pages are not.
- Pages have custom template feature vs. Posts do not.
http://www.wpbeginner.com/beginners-guide/what-is-the-difference-between-posts-vs-pages-in-wordpress/
Both posts and pages have ______ fields that allow developers to add _____ ____ and then use that ______ inside of posts and pages.
Both posts and pages have custom fields that allow developers to add meta data and then use that data inside of posts and pages.
http://codex.wordpress.org/Custom_Fields
Wordpress is built for ________ and _______. Most of your work will take place inside of the “________” folder when creating _______ Wordpress sites. The best way to get up and running with _____ is to review the code in the existing ______ files.
Wordpress is built for customization and modification. Most of your work will take place inside of the “themes” folder when creating custom Wordpress sites. The best way to get up and running with themes is to review the code in the existing theme files.
http://codex.wordpress.org/WordPress_Files
Regarding files, the “functions.php” file would contain _____ _________, including ____, defined by the developer.
Regarding files, the “functions.php” file would contain custom functions, including hooks, defined by the developer.
Wordpress is based on ____. It is ____ ____ so developers can use their own HTML and PHP inside of Wordpress files for customization or even rewrite parts of Wordpress if necessary.
Wordpress is based on PHP. It is open source so developers can use their own HTML and PHP inside of Wordpress files for customization or even rewrite parts of Wordpress if necessary.