It used to works before maybe a year ago. now i'm trying to build new plugin using symlink. but wordpress not detecting that symlinked plugin.
i tried ln -s /plugin-source/ /site/wp-content/plugins/plugin-name
i've also tried using 'sudo ln'. but it's not showing in wordpress plugin. when i copy it directly it works fine. anyone know why symlinked plugin not detected by latest wordpress? Thanks!
Update
answer below works. in my case it was osx not letting wordpress to access symlinked pluging from my desktop (not sure what's reason). so i move it to htdoc directory and it worked fine.
ln -s ~/Desktop/wp_plugins/plugin-name/ /Applications/MAMP/htdocs/site/wp-content/plugins/plugin-name
– Vociferation