Question: According to WordPress PHP coding standards for inline comments, how would you write a single-line comment in a PHP document?
- `// This is a single line comment`
- `/\* _ This is a single line comment._/`
- `// This is a single line comment.`
- ``
Answer: The correct answer of the above question is Option A:`// This is a single line comment`