VS Code highlighted all my wordpress function name

You have to add “wordpress” to the intelephense.stubs array setting in your VS Code settings file. This array should probably also have many other stubs listed as well. For example: (“wordpress” is at the bottom) // VS Code settings.json { // … other settings here … “intelephense.files.maxSize”: 3000000, “intelephense.stubs”: [ “apache”, “bcmath”, “bz2”, “calendar”, “com_dotnet”, … Read more

tech