WordPress Themes Development Question:
Tell me how include and require are different from each other?
Answer:
Both include and require scans the program. If the require() function doesn’t find any file than the script will not execute. On the other hand if the include() file can’t find a file or encounter any error then the warning notification will be raised but the script will still execute.
Previous Question | Next Question |
Tell me how is creating a site on wordpress.org different from wordpress.com? | Explain me what is the procedure to call a constructor for a parent class? |