Why phpstorm don't see wordpress autocomplit?
I work in ubuntu.
I activate wordpress plugin and change wordpress settings path for my project.

I configure php interpreter

but it not help me
when i write wordpress function, phpstorm don't see it.

What i forgot to do?
I need help!!!
Thanks for help.
请先登录再写评论。
Hi there,
You have excluded "wp_includes" folder ... Why?
Because i work just with wp-content. By the way, i resolve my problem. I change group from user to www-data for my project, and it works.
>Because i work just with wp-content.
But get_header() and other functions are declared in that "wp_includes" folder. If it's excluded then they (functions defined there) will not be discovered by IDE...
>By the way, i resolve my problem.
Great. So it's not an issue any more.
Ok, but if i want to not show the path of the files in the wp-admin and wp-inlcludes, when i search the file with ctrl+shift+n, what i gonna do?
You can do the same what used for Composer packages: exclude folder and then re-add it as PHP Include Path entry: such folder will still be indexed but will not be treated as "your code" (will be a "library").
Thanks, i understand))