Wordpress MCQ Multiple Choice Questions Answers - Page 2 | Quiz for Practice
Wordpress MCQ Questions for Practice
16. What are transients?
Correct Answer is: a way to cache information
17. What is a user role that is unique to WordPress Multisite?
Correct Answer is: Super Admin
18. What is the core mission of WordPress?
Correct Answer is: to make free software
19. What is the correct order of parameters for the add_action() function?
Correct Answer is: add_action( 'example_hook', 'example_function', $priority, $accepted_args )
20. What is the default priority for an action hook or filter?
Correct Answer is: 10
21. What is the difference between an action and a filter?
Correct Answer is: Actions are used to add or remove code at runtime. Filters are used to modify data before it is either displayed in the browser or saved to the database.
22. What is the name of the open-source project that serves as a bug tracker and project management tool for WordPress?
Correct Answer is: Trac
23. What is the process of marking the code you write so that it is ready for translation?
Correct Answer is: internationalization
24. What is the role of a WordPress theme?
Correct Answer is: all of these answers
25. What service is used to manage user profile photos across any WordPress site?
Correct Answer is: Gravatar
26. What technique would you use to secure data before rendering it to a user?
Correct Answer is: validate and sanitize
27. What user role would you assign to someone so they can write and publish only their posts and no one else's?
Correct Answer is: Author
28. What would you do to improve your site's performance?
Correct Answer is: all of these answers
29. What's the primary difference between template tags prefaced with the versus get_the?
Correct Answer is: Template tags prefaced with the _ display a value. Template tags prefaced with get_the return a value.
30. When should you edit core WordPress files?
Correct Answer is: You should never edit WordPress core.