Question: 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?
- `apply_filters( 'Hello World!', 'mytextdomain' );`
- `esc_html( 'Hello World!', 'mytextdomain' );`
- `$string = "Hello World!";`
- `__( 'Hello World!', 'mytextdomain' );`
Answer: The correct answer of the above question is Option D:`__( 'Hello World!', 'mytextdomain' );`