WordPress Quiz

0%
0
Created by Yadeno Gelasa

WordPress

WP

WordPress Quiz

1 / 84

1. What is the process of marking the code you write so that it is ready for translation?

2 / 84

2. In your wp-config.php file, you've added the following line of code. What does it do?

define( 'DISALLOW_FILE_EDIT', true );

3 / 84

3. In the WordPress template hierarchy, which file could not be used to display an archive?

4 / 84

4. Why can't you modify the query on a template page?

5 / 84

5. Which Wordpress conditional would you use to determine if you were on a single page?

6 / 84

6. What is the role of a WordPress theme?

7 / 84

7. What service is used to manage user profile photos across any WordPress site?

8 / 84

8. The REST API is a simple way to get data in and out of WordPress over HTTP. Applications using the REST API should be written in which programming language?

9 / 84

9. What are transients?

10 / 84

10. Who owns the trademark for WordPress and WordCamp names and logos?

11 / 84

11. According to WordPress PHP coding standards for inline comments, how would you write a single-line comment in a PHP document?

12 / 84

12. Which of these refers to a WordPress security token that is used to verify that a request was made by the right person or client?

13 / 84

13. What color is the paragraph nested within the div?

<head>
<style>
body { color: black; }

p { color: blue; }

div { color: green; }

p { color: red; }
</style>
</head>
<body>
<div>
<p>This is a paragraph inside a div.</p>
</div>
</body>
</html>

14 / 84

14. If you wanted to debug some JavaScript, which method would you use to display data in your browser console?

15 / 84

15. On a regular WordPress install, what is the difference between transients and the object cache?

16 / 84

16. Theme developers can take advantage of the API to give users a way to manipulate basic theme settings. The Customizer API is object-oriented and provides four main objects. What are they?

17 / 84

17. What is the primary difference between template tags prefaced with the versus get_the?

18 / 84

18. How many minutes does it take to install WordPress according to the "Famous X-Minute Installation" instructions on WordPress.org?

19 / 84

19. If you have pretty permalinks enabled on a WordPress site, the REST API index is exposed by appending what to the end of the site URL. (for example, http://example.com/answer/) Note that the index provides information regarding which routes are available for that particular WordPress install.

20 / 84

20. The WordPress REST API is designed to receive and respond to particular types of requests using basic HTML methods. For example, a request to upload a PHP file into a particular folder on a server might look like the code POST /folder/_file.php. Based on this code, what would you call /folder/_file.php (in REST API terms)?

21 / 84

21. Which of the following must have underlined links in order to meet WCAG 2.0 accessibility standards?

22 / 84

22. Which of this CSS class naming convention is correct according to WordPress CSS Coding Standards?

23 / 84

23. Which folder in a WordPress install is not affected by an automatic WordPress update?

24 / 84

24. In which of the following ways might you contribute to the WordPress community by testing?

25 / 84

25. Which software development principle, often used in WordPress, aims to reduce the repetition of code?

26 / 84

26. Akismet is a plugin that comes automatically installed with WordPress. What does it do?

27 / 84

27. WordPress is an open-source software licensed under the GPL. This means that__

28 / 84

28. The Block API enables developers to register custom blocks in themes or plugins. How would you register a custom block?

29 / 84

29. If you activate or update a plugin and it breaks your site so that you cannot manage it via wp-admin, how can you disable the plugin?

30 / 84

30. Where do you configure global settings for comments on your WordPress site?

31 / 84

31. How would you write a text string containing "Hello World!" in a way that makes it possible for someone else to translate the string into a different language?

32 / 84

32. How would you use CSS to ensure your theme was mobile responsive?

33 / 84

33. WP_Query is the WordPress query class that is used to fetch posts from the database. How would you create a new instance of this class?

34 / 84

34. JavaScript variables can hold many data types. Which data type does the following variable represent?

var x = '16';

35 / 84

35. Which WordPress setting would you use to make page URLs look like http://example.com/my-page/ instead of the default http://example.com/?p=21/?

36 / 84

36. Within the Editor, blocks are rendered as JavaScript. How are blocks rendered on the front end of a site?

37 / 84

37. What can you not configure via wp-config.php?

38 / 84

38. Review the HTML on line 1. The goal of the PHP on line 2 is to extract the field value and assign it to a variable prior to inserting it into the database. What is wrong with this PHP code?

  1. <input type="text" id="title" name="title" />
  2. $title = $_POST[ 'title' ]

 

39 / 84

39. Which WP-CLI command would you use to manage the capabilities of a user role?

40 / 84

40. You might see this code in a WordPress plugin. What does it do?

if ( ! defined( 'ABSPATH' ) ) {
die;
}

41 / 84

41. Which of these snippets represents a wrapper that calls jQuery safely and doesn't require repetitive use of the word "jQuery"?

42 / 84

42. The REST API provides data, which is accessible to any client anonymously, as well as private data available only after authentication. How could you ensure that no one can anonymously access site data via the REST API?

43 / 84

43. In WordPress, what is true of plugins?

44 / 84

44. You have a search bar on your site. You would like to use a <label> to make the word "Search" visible to screen readers, but you don't want to display the word "Search" on the screen. How can you accomplish this?

45 / 84

45. When it comes to best practice for WordPress development, what is the preferred method for adding a custom post type (CPT) to a site?

46 / 84

46. Which of the following file types is NOT involved in translating WordPress?

47 / 84

47. What is the name of the open-source project that serves as a bug tracker and project management tool for WordPress?

48 / 84

48. What is the default priority for an action hook or filter?

49 / 84

49. Which is the best practice for working with WordPress CSS?

50 / 84

50. If your WordPress site is seriously compromised, what is the best course of action to return your site to good health?

51 / 84

51. What is a user role that is unique to WordPress Multisite?

52 / 84

52. Where can you find the official WordPress documentation and usage guide?

53 / 84

53. What is this code sample an example of?

<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile;
else :
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
endif;

54 / 84

54. Which of these are best practices in accessibility?

55 / 84

55. What user role would you assign to someone so they can write and publish only their posts and no one else's?

56 / 84

56. Which is not a benefit of DRY code?

57 / 84

57. Which is NOT a suggested performance improvement for your WordPress website?

58 / 84

58. WordPress is translated, at least partially, in more than 200 locales. If you wanted to help translate WordPress into other languages, which contributor group would you join?

59 / 84

59. For the majority of modern themes, what is the standard method used to customize various details of site appearance and features, such as changing the site description or adding a logo and favicons?

60 / 84

60. The REST API utilizes which data format?

61 / 84

61. What is the correct order of parameters for the add_action() function?

62 / 84

62. What technique would you use to secure data before rendering it to a user?

63 / 84

63. You would use a post instead of a page when the content is_

64 / 84

64. What is the difference between an action and a filter?

65 / 84

65. What is a way you can both harden your site's security and improve how Google presents your site in search results?

66 / 84

66. Which of these refers to a WordPress security token that is used to verify that a request was made by the right person or client?

67 / 84

67. The REST API provides public data, which is accessible to any client anonymously, as well as private data available only after authentication. How could you ensure no one can anonymously access site data via the REST API?

68 / 84

68. Which of the following is NOT a suggested security improvement for your WordPress website?

69 / 84

69. What is the core mission of WordPress?

70 / 84

70. The WordPress block editor contains a number of default blocks, including blocks for paragraphs, images, quotes, and shortcodes. Blocks are grouped into categories to help users browse and discover them. Which is not a category provided by WordPress Core?

71 / 84

71. Which of these does not impact your site speed?

72 / 84

72. Review the HTML on line 1. The goal of the PHP on line 2 is to extract the field value and assign it to a variable prior to inserting into the database. What is wrong with this PHP code?

<input type="text" id="title" name="title" />
$title = $_POST[ 'title' ];

73 / 84

73. You can harden your WordPress site security by adding __ to your wp-config.php file?

74 / 84

74. What would you do to improve your site's performance?

75 / 84

75. Which of these is NOT a part of the internationalization and localization process?

76 / 84

76. Wordpress core and many plugins store data in the database in a special format as represented by the sample below. What format is this called?

a:2:{i:0;s:27:"ari-adminer/ari-adminer.php";i:1;s:30:"atomic-blocks/atomicblocks.php";}

77 / 84

77. When should you edit core WordPress files?

78 / 84

78. On a webpage, there are frequently navigation links, a search bar, or other elements that appear before the main content. For keyboard and screen reader users, it can be frustrating to get to the main content of a page because they have to tab through all these elements on every new page load. What can you add to a site to fix this?

79 / 84

79. In a standard template file, how often does the WordPress Loop run?

80 / 84

80. Which of these is not a part of the internationalization and localization process?

81 / 84

81. In WordPress, what is the Loop used to do?

82 / 84

82. In WordPress, what is the block editor used for?

83 / 84

83. Which of these are the minimum files required to make a child theme?

84 / 84

84. If you wanted to register a custom post type, which hook would you use?

Your score is

Share Your Result!

Facebook
0%

Exit

Qabiyyee Marsariitii Kanaa, Copy Gochuun Dhorkaadha!