Search test library by skills or roles
⌘ K

PHP & WordPress Developer Online Test

About the test:

PHP & WordPress-udvikleren online-test bruger scenariebaserede MCQ-spørgsmål til at evaluere en kandidats evne til at opbygge responsive WordPress-websteder (blogs, e-handel, statiske websteder) og tilpasse dem ved at oprette og installere brugerdefinerede temaer, widgets og plugins. Spørgsmålene om kode-sporing evaluerer HTML/ CSS-grundlæggende, JavaScript Basics, PHP Basics og forståelse af WordPress's indre arbejde til fastsættelse og fejlfinding. Testen har kodningsspørgsmål til evaluering af praktisk programmeringsviden.

Covered skills:

  • Installation af WordPress på selvhostede servere
  • Naviger rundt om WordPress -kernen
  • Tilpasning af WordPress -tema (plugins; widgets)
  • Databaseforespørgsler for at oprette tabeller
  • Grundlæggende om HTML/ CSS
  • Konvertering af bootstrap -skabeloner til WordPress -tema
  • Forståelse af plugin og temaarkitektur
  • Håndtering af opdateringer og sikring af WordPress -websteder
  • Optimering af WordPress -websteder til SEO
  • Grundlæggende om JavaScript og PHP

9 reasons why
9 reasons why

Adaface PHP & WordPress Developer Test is the most accurate way to shortlist PHP -udviklers



Reason #1

Tests for on-the-job skills

The PHP & WordPress Developer Online Test helps recruiters and hiring managers identify qualified candidates from a pool of resumes, and helps in taking objective hiring decisions. It reduces the administrative overhead of interviewing too many candidates and saves time by filtering out unqualified candidates at the first step of the hiring process.

The test screens for the following skills that hiring managers look for in candidates:

  • I stand til at installere og konfigurere WordPress på selvhostede servere
  • Dygtige til at konvertere bootstrap -skabeloner til WordPress -temaer
  • Dygtige til at navigere rundt i WordPress -kernen
  • Dyb forståelse af plugin og temaarkitektur
  • Evne til at tilpasse WordPress -temaer ved hjælp af plugins og widgets
  • Kompetence til styring af opdateringer og sikring af WordPress -websteder
  • Dygtige i databaseforespørgsler til at oprette tabeller
  • Dygtig til at optimere WordPress -websteder til SEO
  • Grundig forståelse af HTML og CSS -grundlæggende
  • Fortrolighed med JavaScript og PHP -grundlæggende
Reason #2

No trick questions

no trick questions

Traditional assessment tools use trick questions and puzzles for the screening, which creates a lot of frustration among candidates about having to go through irrelevant screening assessments.

View sample questions

The main reason we started Adaface is that traditional pre-employment assessment platforms are not a fair way for companies to evaluate candidates. At Adaface, our mission is to help companies find great candidates by assessing on-the-job skills required for a role.

Why we started Adaface
Reason #3

Non-googleable questions

We have a very high focus on the quality of questions that test for on-the-job skills. Every question is non-googleable and we have a very high bar for the level of subject matter experts we onboard to create these questions. We have crawlers to check if any of the questions are leaked online. If/ when a question gets leaked, we get an alert. We change the question for you & let you know.

How we design questions

Dette er kun en lille prøve fra vores bibliotek med 10.000+ spørgsmål. De faktiske spørgsmål om dette PHP & WordPress online test vil være ikke-gåbart.

🧐 Question

Medium

Custom WordPress Shortcode
Shortcodes
Solve
You're creating a custom WordPress shortcode that users can insert into their posts and pages to display a promotional banner. Your initial PHP code is as follows:
 image
A user inserts your shortcode into a post like this:
 image
However, when the user previews the post, the content inside the `[promo-banner]` shortcode isn't displayed. Instead, the user sees the shortcode itself.

What change can you make to fix this issue?
A: Replace `'promo-banner'` with `'[promo-banner]'` in the `add_shortcode` function.
B: Replace `'promo-banner'` with `'[promo-banner]'` in the shortcode inserted into the post.
C: Change the `promo_banner_shortcode` function to accept only one parameter.
D: Use `do_shortcode` function to process the `$content` inside the `promo_banner_shortcode` function.
E: Replace `$content` with `$atts['content']` in the `promo_banner_shortcode` function.

Medium

Iteration in WordPress Plugin
Asynchronous JavaScript
Solve
You're developing a WordPress plugin where you need to fetch comments for a list of posts from a WordPress database using AJAX. The JavaScript code is as follows:
 image
The processComments function processes the comments for other operations and is working as expected.

However, when running the code, you notice that the console logs for fetched comments don't appear in the order of the post IDs. Instead, the logs appear in a seemingly random order each time.

What change can you make to ensure the comments are fetched and processed in the order of the post IDs?
A: Use a traditional for loop instead of forEach.
B: Use setTimeout to delay the execution of fetchComments.
C: Use sort on postIDs before calling forEach.
D: Change forEach to map and use Promise.all.
E: Make processComments function asynchronous and await it in the forEach loop.

Medium

Responsive load
Optimization
Solve
Here’s the code snippet of interest from a client's WordPress code:
 image
 image
You are reviewing the client's code and have to make recommendations to improve speed of the WordPress site. Which of these are good recommendations?
A: Cache the website to improve the site but need to move the responsive logic to CSS. The conditional logic might not be cached if the cache provider does not trigger the conditionals

B: Cache the website to improve the site. No need to move the responsive logic to CSS

C: jQuery is very commonly loaded on live sites multiple times due to poorly written plugins/themes. Ensure required JS files are enqueued only once and when they are needed

D: CSS in <head> file will affect the speed of the site since the entire CSS file has to be loaded before rendering the site. It is advised to load only the CSS that is mandatory in the <head> and move the rest of the CSS to the later portions of the HTML

Medium

Shortcode Development in WordPress
Shortcodes
WP_Query
Loop
Solve
You're developing a WordPress plugin that provides a shortcode to display the latest posts. The shortcode is [latest-posts count="3"], where the "count" attribute determines the number of latest posts to display. 

Your initial PHP code is as follows:
 image
You test the shortcode on a page and find that the page content following the shortcode doesn't display.

What change can you make to fix this issue?
A: Use `return $query->have_posts();` instead of `$query->the_post();`.
B: Use `wp_reset_query();` after the while loop.
C: Use `the_content();` after the while loop.
D: Use `wp_reset_postdata();` after the while loop.
E: Use `return $output;` before the while loop.

Medium

WP REST API
REST API
HTTP Requests
JSON Response
Solve
You're developing a custom WordPress plugin to fetch and display a list of posts using the WordPress REST API. Your initial JavaScript code is as follows:
 image
This code works fine when the website URL is `http://localhost/wordpress`. However, when you move your website to a different domain (for example, `http://example.com`), the list of posts doesn't display.

What change can you make to fix this issue?
A: Replace `/wp-json/wp/v2/posts` with `http://example.com/wp-json/wp/v2/posts`.
B: Replace `/wp-json/wp/v2/posts` with `http://localhost/wordpress/wp-json/wp/v2/posts`.
C: Use `wp_localize_script` to pass the website URL from PHP to JavaScript, and prepend it to `/wp-json/wp/v2/posts`.
D: Use `admin_url('admin-ajax.php')` to replace `/wp-json/wp/v2/posts`.
E: Use `site_url('/wp-json/wp/v2/posts')` to replace `/wp-json/wp/v2/posts`.

Easy

Background Properties
Solve
Consider the following shorthand CSS example:

background: #f7f7f7 url(jolie.jpg) no-repeat scroll 0px 0px;

Which of the following show the individual background properties represented by the shorthand:
 image

Easy

Colorful sentences
Solve
Our intern is writing a colorful blog post, and has written the following code. What colors will the sentences be?
 image
A: Sentence 1 will be gray, Sentence 2 will be pink.
B: Both sentences will be gray.
C: Sentence 1 will be pink, Sentence 2 will be gray.
D: Both sentences will be pink.
E: The code does not make sense; will throw an error.

Easy

Links
Solve
In the following HTML, what will be the color of link with class "mark"
 image

Medium

Let's Hack
CSS Property
Solve
Consider the following HTML and CSS:
 image
 image
Which additional CSS rule(s) will render the following image? Choose ALL that apply.
 image
A:
div{
  flex-direction : column;
  align-items : center;
}
B:
div{
  flex-direction : row;
  align-items: center;
}
C:
div{
  flex-direction: column;
  justify-content: center;
}
D:
div{
  flex-direction: row;
  justify-content: center;
}

Medium

Async Await Promises
Promises
Async-Await
Solve
What will the following code output?
 image
A: 24 after 5 seconds and after another 5 seconds, another 24
B: 24 followed by another 24 immediately
C: 24 immediately and another 24 after 5 seconds
D: After 5 seconds, 24 and 24
E: Undefined
F: NaN
G: None of these

Medium

Bitcoin prices
Axios
Promises
Solve
Review the following JavaScript code and pick the correct options: 
 image
Assume that the API returns a successful 200 response code and a JSON object as the response body. What would the value of ‘a’ be after the code is executed?

Medium

My Module
Scope
Solve
What will the output of the following JavaScript code be?
 image
 image

Medium

Promise Resolve
Promises
Async-Await
Solve
What does the following code output? 
 image

Easy

Throw, Try, Async
Promises
Async-Await
Solve
What does the following JS code output?
 image

Medium

Dynamic Function Calls
Arrays
Strings
Functions
Solve
Consider the following PHP pseudo code:
 image
The processArray function processes the $data array based on the transformation operations defined in the $operations array. The operations array dictates which transformation function to call for each sub-array key. What will be the output of the above code?
 image

Hard

Alter and Change
OOPs
Solve
What does the following code output?
 image

Hard

Exceptions
Exceptions
Solve
What does the following code output?
 image

Easy

PDO MySQL
Database Connections
Solve
Consider the following table data and PHP code. What is the result?
 image

Medium

Session Management and Object Serialization
Sessions
Serialization
Solve
Consider the following PHP script:
 image
Assuming you run the script twice in a row without clearing the session data, what will be the output on the second run?

Easy

Registration Queue
Logic
Queues
Solve
We want to register students for the next semester. All students have a receipt which shows the amount pending for the previous semester. A positive amount (or zero) represents that the student has paid extra fees, and a negative amount represents that they have pending fees to be paid. The students are in a queue for the registration. We want to arrange the students in a way such that the students who have a positive amount on the receipt get registered first as compared to the students who have a negative amount. We are given a queue in the form of an array containing the pending amount.
For example, if the initial queue is [20, 70, -40, 30, -10], then the final queue will be [20, 70, 30, -40, -10]. Note that the sequence of students should not be changed while arranging them unless required to meet the condition.
⚠️⚠️⚠️ Note:
- The first line of the input is the length of the array. The second line contains all the elements of the array.
- The input is already parsed into an array of "strings" and passed to a function. You will need to convert string to integer/number type inside the function.
- You need to "print" the final result (not return it) to pass the test cases.

For the example discussed above, the input will be:
5
20 70 -40 30 -10

Your code needs to print the following to the standard output:
20 70 30 -40 -10

Medium

Visitors Count
Strings
Logic
Solve
A manager hires a staff member to keep a record of the number of men, women, and children visiting the museum daily. The staff will note W if any women visit, M for men, and C for children. You need to write code that takes the string that represents the visits and prints the count of men, woman and children. The sequencing should be in decreasing order. 
Example:

Input:
WWMMWWCCC

Expected Output: 
4W3C2M

Explanation: 
‘W’ has the highest count, then ‘C’, then ‘M’. 
⚠️⚠️⚠️ Note:
- The input is already parsed and passed to a function.
- You need to "print" the final result (not return it) to pass the test cases.
- If the input is- “MMW”, then the expected output is "2M1W" since there is no ‘C’.
- If any of them have the same count, the output should follow this order - M, W, C.
🧐 Question🔧 Skill

Medium

Custom WordPress Shortcode
Shortcodes

2 mins

WordPress
Solve

Medium

Iteration in WordPress Plugin
Asynchronous JavaScript

3 mins

WordPress
Solve

Medium

Responsive load
Optimization

3 mins

WordPress
Solve

Medium

Shortcode Development in WordPress
Shortcodes
WP_Query
Loop

2 mins

WordPress
Solve

Medium

WP REST API
REST API
HTTP Requests
JSON Response

2 mins

WordPress
Solve

Easy

Background Properties

2 mins

HTML/CSS
Solve

Easy

Colorful sentences

2 mins

HTML/CSS
Solve

Easy

Links

2 mins

HTML/CSS
Solve

Medium

Let's Hack
CSS Property

3 mins

HTML/CSS
Solve

Medium

Async Await Promises
Promises
Async-Await

2 mins

JavaScript
Solve

Medium

Bitcoin prices
Axios
Promises

2 mins

JavaScript
Solve

Medium

My Module
Scope

2 mins

JavaScript
Solve

Medium

Promise Resolve
Promises
Async-Await

2 mins

JavaScript
Solve

Easy

Throw, Try, Async
Promises
Async-Await

2 mins

JavaScript
Solve

Medium

Dynamic Function Calls
Arrays
Strings
Functions

2 mins

PHP
Solve

Hard

Alter and Change
OOPs

2 mins

PHP
Solve

Hard

Exceptions
Exceptions

2 mins

PHP
Solve

Easy

PDO MySQL
Database Connections

2 mins

PHP
Solve

Medium

Session Management and Object Serialization
Sessions
Serialization

2 mins

PHP
Solve

Easy

Registration Queue
Logic
Queues

30 mins

Coding
Solve

Medium

Visitors Count
Strings
Logic

30 mins

Coding
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Custom WordPress Shortcode
Shortcodes
WordPress
Medium2 mins
Solve
Iteration in WordPress Plugin
Asynchronous JavaScript
WordPress
Medium3 mins
Solve
Responsive load
Optimization
WordPress
Medium3 mins
Solve
Shortcode Development in WordPress
Shortcodes
WP_Query
Loop
WordPress
Medium2 mins
Solve
WP REST API
REST API
HTTP Requests
JSON Response
WordPress
Medium2 mins
Solve
Background Properties
HTML/CSS
Easy2 mins
Solve
Colorful sentences
HTML/CSS
Easy2 mins
Solve
Links
HTML/CSS
Easy2 mins
Solve
Let's Hack
CSS Property
HTML/CSS
Medium3 mins
Solve
Async Await Promises
Promises
Async-Await
JavaScript
Medium2 mins
Solve
Bitcoin prices
Axios
Promises
JavaScript
Medium2 mins
Solve
My Module
Scope
JavaScript
Medium2 mins
Solve
Promise Resolve
Promises
Async-Await
JavaScript
Medium2 mins
Solve
Throw, Try, Async
Promises
Async-Await
JavaScript
Easy2 mins
Solve
Dynamic Function Calls
Arrays
Strings
Functions
PHP
Medium2 mins
Solve
Alter and Change
OOPs
PHP
Hard2 mins
Solve
Exceptions
Exceptions
PHP
Hard2 mins
Solve
PDO MySQL
Database Connections
PHP
Easy2 mins
Solve
Session Management and Object Serialization
Sessions
Serialization
PHP
Medium2 mins
Solve
Registration Queue
Logic
Queues
Coding
Easy30 minsSolve
Visitors Count
Strings
Logic
Coding
Medium30 minsSolve
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

Med Adaface var vi i stand til at optimere vores indledende screeningsproces med op mod 75 %, hvilket frigjorde kostbar tid for både ansættelsesledere og vores talentanskaffelsesteam!


Brandon Lee, Leder af mennesker, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment PHP & WordPress online test in your hiring process is that it is an elimination tool, not a selection tool. In other words: you want to use the test to eliminate the candidates who do poorly on the test, not to select the candidates who come out at the top. While they are super valuable, pre-employment tests do not paint the entire picture of a candidate’s abilities, knowledge, and motivations. Multiple easy questions are more predictive of a candidate's ability than fewer hard questions. Harder questions are often "trick" based questions, which do not provide any meaningful signal about the candidate's skillset.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the PHP & WordPress online test from your dashboard by entering their email address.

Public link: You can create a public link for each test that you can share with candidates.

API or integrations: You can invite candidates directly from your ATS by using our pre-built integrations with popular ATS systems or building a custom integration with your in-house ATS.

invite candidates
Reason #7

Detailed scorecards & benchmarks

Se prøvescorekort
Reason #8

High completion rate

Adaface tests are conversational, low-stress, and take just 25-40 mins to complete.

This is why Adaface has the highest test-completion rate (86%), which is more than 2x better than traditional assessments.

test completion rate
Reason #9

Advanced Proctoring


Learn more

About the PHP & WordPress Developer Assessment Test

Why you should use Pre-employment PHP & WordPress Developer Online Test?

The PHP & WordPress online test makes use of scenario-based questions to test for on-the-job skills as opposed to theoretical knowledge, ensuring that candidates who do well on this screening test have the relavant skills. The questions are designed to covered following on-the-job aspects:

  • Installation og konfiguration af WordPress på selvhostede servere
  • Konvertering af bootstrap -skabeloner til WordPress -temaer
  • Navigering rundt om WordPress -kernen
  • Forståelse af plugin og temaarkitektur
  • Tilpasning af WordPress -temaer ved hjælp af plugins og widgets
  • Håndtering af opdateringer og sikring af WordPress -websteder
  • Udførelse af databaseforespørgsler for at oprette tabeller i WordPress
  • Optimering af WordPress -websteder til SEO
  • Implementering af grundlæggende for HTML og CSS
  • Implementering af grundlæggende om JavaScript og PHP

Once the test is sent to a candidate, the candidate receives a link in email to take the test. For each candidate, you will receive a detailed report with skills breakdown and benchmarks to shortlist the top candidates from your pool.

What topics are covered in the PHP & WordPress Developer Online Test?

  • konvertering af bootstrap -skabeloner til WordPress -tema </h4> <p > Denne færdighed drejer sig om at tage en foruddesignet webstedsskabelon bygget med bootstrap og konvertere den til et fuldt funktionelt WordPress-tema. Det involverer at forstå strukturen af ​​et WordPress -tema, integrere skabelonens HTML og CSS i temafilerne og foretage de nødvendige justeringer for at sikre korrekt funktionalitet. Måling af denne færdighed hjælper med at evaluere en kandidats evne til at arbejde med eksisterende design og konvertere dem til WordPress -temaer. </p> <h4> Naviger rundt i WordPress -kernen

    Denne dygtighed henviser til en kandidats evne til at navigere og arbejde Inden for WordPress -kernefiler, inklusive hovedfunktionerne.php -filen, skabelonfiler og andre vigtige filer. Det inkluderer forståelse af filstrukturen, lokalisering og redigering af specifikke sektioner af kode og udnyttelse af WordPress -funktioner og kroge. Test af denne færdighed hjælper med at vurdere en kandidats fortrolighed og effektivitet i at arbejde med WordPress -kernen.

  • forståelse af plugin og temaarkitektur

    Denne færdighed involverer at forstå arkitekturen og strukturen af ​​plugins og temaer i WordPress. Det inkluderer forståelse af, hvordan man opretter og organiserer filer og mapper, bruger specifikke navnekonventioner, implementerer kroge og filtre og integreres korrekt med WordPress -systemet. Evaluering af denne færdighed hjælper med at bestemme en kandidats viden og færdigheder i at udvikle plugins og temaer, der følger bedste praksis og overholde WordPress -standarder.

  • Tilpasning af WordPress -tema (plugins; widgets)

    Tilpasning af en WordPress Tema involverer at foretage ændringer til et tema's udseende, funktionalitet og opførsel. Denne færdighed indebærer at arbejde med plugins, widgets og kodeændringer for at opnå de ønskede tilpasninger. Evaluering af denne færdighed i testen hjælper med at måle en kandidats evne til at implementere tilpasninger effektivt, forbedre den visuelle appel og brugeroplevelse af et WordPress -websted.

  • Håndtering af opdateringer og sikring af WordPress -websteder

    Denne færdighed Fokuserer på en kandidats viden og ekspertise i styring af opdateringer og sikring af WordPress -websteder. Det dækker opgaver som at holde WordPress -kerne, plugins og temaer ajour, implementere sikkerhedsforanstaltninger og sikre stedets beskyttelse mod sårbarheder og angreb. Evaluering af denne færdighed hjælper med at vurdere en kandidats evne til at vedligeholde og beskytte WordPress -steder, hvilket sikrer deres stabilitet, pålidelighed og sikkerhed.

  • databaseforespørgsler for at oprette tabeller

    Denne færdighed involverer at bruge databaseforespørgsler til Opret tabeller i WordPress. Det inkluderer forståelse af strukturen og syntaks for SQL -forespørgsler, oprettelse af tabeller med de relevante felter og datatyper og integreret dem korrekt i WordPress -databasen. Evaluering af denne færdighed hjælper med at bestemme en kandidats evne til at arbejde med databaser i WordPress, som er afgørende for at gemme og hente data effektivt.

  • Optimering af WordPress -websteder til SEO

    Denne færdighed drejer sig om at optimere WordPress Websteder til søgemaskineoptimering (SEO). Det inkluderer opgaver såsom konfiguration af permalinks, optimering af metatags, forbedring af webstedshastighed og ydeevne og implementering af andre SEO -bedste praksis. Måling af denne færdighed hjælper med at evaluere en kandidats evne til at optimere WordPress -websteder for bedre synlighed og rangering i søgemaskinresultater.

  • Grundlæggende om HTML/CSS

    Denne færdighed omfatter den grundlæggende forståelse og færdigheder i HTML og CSS, som er grundlæggende webudviklingssprog. Det involverer viden om HTML -tags, attributter og struktur samt CSS -vælgere, egenskaber og stylingsteknikker. Evaluering af denne færdighed hjælper med at bestemme en kandidats fundament i front-end-udviklingen, der er vigtig for at skabe og tilpasse WordPress-temaer og skabeloner.

  • Grundlæggende om JavaScript og PHP

    Denne færdighed fokuserer på den grundlæggende forståelse og fortrolighed med JavaScript og PHP -sprog. Det inkluderer viden om JavaScript -syntaks, DOM -manipulation og grundlæggende scripting -koncepter samt fortrolighed med PHP -syntaks, variabler, funktioner og kontrolstrukturer. Test af denne færdighed hjælper med at evaluere en kandidats evne til at arbejde med scripting på klientsiden og serversiden, som er afgørende for at opbygge dynamiske og interaktive funktioner i WordPress.

  • Full list of covered topics

    The actual topics of the questions in the final test will depend on your job description and requirements. However, here's a list of topics you can expect the questions for PHP & WordPress online test to be based on.

    WordPress -installation
    WordPress -konfiguration
    Bootstrap -skabeloner
    Konvertering af skabeloner
    WordPress Core
    Plugin Architecture
    Temaarkitektur
    Tilpasning
    Opdaterer styring
    WordPress Security
    Databaseforespørgsler
    Tabeloprettelse
    SEO -optimering
    HTML Basics
    CSS Basics
    JavaScript Basics
    PHP Basics
    Installation af plugins
    Brug af temaer
    Widget -tilpasning
    Backup og genskab
    WordPress Hooks
    WordPress -handlinger
    WordPress -filtre
    WordPress Shortcode
    Fejlfinding
    PHP -funktioner
    JavaScript fungerer
    Loops i PHP
    Loops i JavaScript
    Betingede udsagn i PHP
    Betingede udsagn i JavaScript
    Arrays i PHP
    Arrays i JavaScript
    Objektorienteret programmering
    Fejlhåndtering
    Regelmæssige udtryk
    CDN -brug
    Front-end rammer
    Responsivt design
    WordPress REST API
    PHP -filhåndtering
    CSS -forarbejdere
    JavaScript -rammer
    WordPress Child -temaer
    WordPress skabelonhierarki
    WordPress brugerdefinerede posttyper
    WordPress Taxonomies
    WordPress -kortkoder
    WordPress -kroge og filtre
    WordPress Ajax
    WordPress -brugerroller
    WordPress multisite
    WordPress cache
    WordPress Security Best Practices

What roles can I use the PHP & WordPress Developer Online Test for?

  • PHP -udvikler
  • WordPress -udvikler
  • Senior WordPress -udvikler
  • Web-udvikler
  • Fuld-stack-udvikler
  • Webdesigner
  • Web Application Developer

How is the PHP & WordPress Developer Online Test customized for senior candidates?

For intermediate/ experienced candidates, we customize the assessment questions to include advanced topics and increase the difficulty level of the questions. This might include adding questions on topics like

  • Oprettelse og ændring af PHP -funktioner
  • Brug af PHP til at interagere med WordPress -databasen
  • Debugging og fejlfinding af WordPress -websteder
  • Implementering af Ajax og jQuery -funktionalitet i WordPress
  • Integrering af tredjeparts API'er med WordPress
  • Implementering af brugerdefinerede posttyper og taksonomier
  • Udvikling af WordPress -plugins og widgets
  • Oprettelse og tilpasning af WordPress -temaer fra bunden
  • Implementering af responsivt design i WordPress
  • Udførelse af præstationsoptimering til WordPress -websteder

The coding question for experienced candidates will be of a higher difficulty level to evaluate more hands-on experience.

Singapore government logo

Ansættelseslederne mente, at de gennem de tekniske spørgsmål, som de stillede under panelinterviewene, var i stand til at fortælle, hvilke kandidater der havde bedre score og differentieret med dem, der ikke scorede så godt. De er meget tilfreds med kvaliteten af ​​de kandidater, der er nomineret med Adaface-screeningen.


85%
Reduktion i screeningstid

PHP & WordPress Developer Hiring Test Ofte stillede spørgsmål

Kan jeg evaluere PHP, JavaScript sammen med WordPress?

Ja. Du kan gennemgå vores standard PHP Online Test og [JavaScript Online Test](https://www.adaface.com/assessment- test/javascript-online-test) for at få en fornemmelse af, hvilken slags spørgsmål der vil blive brugt til at evaluere PHP og JavaScript. Den endelige tilpassede test vil have MCQ-spørgsmål til at evaluere PHP, JavaScript, WordPress og kodningsspørgsmål for at evaluere praktiske PHP- og JavaScript-færdigheder.

Kan jeg evaluere SEO-færdigheder sammen med WordPress?

Ja. Du kan gennemgå vores standard SEO Online Test for at få en fornemmelse af, hvilken slags spørgsmål der vil blive brugt til at evaluere SEO-færdigheder. Den endelige tilpassede test vil have MCQ-spørgsmål til at evaluere WordPress- og SEO-spørgsmål.

Hvordan tilpasses testen til junior WordPress-udviklere?

Sværhedsgraden og emnerne for spørgsmålene vil blive tilpasset til juniorudviklere. Spørgsmålene vil være relativt nemme og fokusere på det grundlæggende i HTML, CSS, WordPress og PHP.

Kan jeg kombinere flere færdigheder i en brugerdefineret vurdering?

Ja absolut. Brugerdefinerede vurderinger er oprettet baseret på din jobbeskrivelse og vil omfatte spørgsmål om alle must-have-færdigheder, du angiver.

Har du nogen anti-cheating eller proctoring-funktioner på plads?

Vi har følgende anti-cheating-funktioner på plads:

  • Ikke-gåbare spørgsmål
  • IP Proctoring
  • Webproctoring
  • Webcam Proctoring
  • Detektion af plagiering
  • Sikker browser

Læs mere om Proctoring Features.

Hvordan fortolker jeg testresultater?

Den primære ting at huske på er, at en vurdering er et elimineringsværktøj, ikke et udvælgelsesværktøj. En færdighedsvurdering er optimeret for at hjælpe dig med at eliminere kandidater, der ikke er teknisk kvalificerede til rollen, den er ikke optimeret til at hjælpe dig med at finde den bedste kandidat til rollen. Så den ideelle måde at bruge en vurdering på er at beslutte en tærskelværdi (typisk 55%, vi hjælper dig med benchmark) og inviterer alle kandidater, der scorer over tærsklen for de næste interviewrunder.

Hvilken oplevelsesniveau kan jeg bruge denne test til?

Hver Adaface -vurdering tilpasses til din jobbeskrivelse/ ideel kandidatperson (vores emneeksperter vælger de rigtige spørgsmål til din vurdering fra vores bibliotek på 10000+ spørgsmål). Denne vurdering kan tilpasses til ethvert erfaringsniveau.

Får hver kandidat de samme spørgsmål?

Ja, det gør det meget lettere for dig at sammenligne kandidater. Valgmuligheder for MCQ -spørgsmål og rækkefølgen af ​​spørgsmål randomiseres. Vi har anti-cheating/proctoring funktioner på plads. I vores virksomhedsplan har vi også muligheden for at oprette flere versioner af den samme vurdering med spørgsmål om lignende vanskelighedsniveauer.

Jeg er kandidat. Kan jeg prøve en øvelsestest?

Nej. Desværre understøtter vi ikke praksisforsøg i øjeblikket. Du kan dog bruge vores eksempler på spørgsmål til praksis.

Hvad er omkostningerne ved at bruge denne test?

Du kan tjekke vores prisplaner.

Kan jeg få en gratis prøve?

Ja, du kan tilmelde dig gratis og forhåndsvise denne test.

Jeg flyttede lige til en betalt plan. Hvordan kan jeg anmode om en brugerdefineret vurdering?

Her er en hurtig guide til hvordan man anmoder om en brugerdefineret vurdering på adaface.

customers across world
Join 1200+ companies in 75+ countries.
Prøv det mest kandidatvenlige færdighedsvurderingsværktøj i dag.
g2 badges
Ready to use the Adaface PHP & WordPress online test?
Ready to use the Adaface PHP & WordPress online test?
ada
Ada
● Online
Previous
Score: NA
Next
✖️