PHP Flashcards
1
Q
[WordPress] Define custom post types
A
Custom post types are posts in WordPress that you define
2
Q
[WordPress] Define taxonomies
A
Taxonomies are the ways those posts are organized
3
Q
[WordPress] Definte custom fields
A
Custom fields are key/value pairs. They are:
- Bound to a content type
- Store custom information about your custom post
- There are defaults, but ACF allows custom solutions
4
Q
List 4 examples of when and why you might want ACF
A
- Need for content associated with a post, but separate from the basic content field (the editor)
- Need for more useful data entry fields
- Need for a high number of data entry fields
- Need for heavy customization of different post content
5
Q
What is the WordPress Loop?
A
A customizable while loop in PHP.
It’s a recipe for displaying repeating blocks of content, sets up the structure that each post will follow and repeats that structure until all posts have been displayed.
6
Q
Where is the WordPress loop found?
A
Within all template files.