How to remove symlink from folder

Do you have any access to the server? SSH access? If you can get to a command line on the server you could try one of these commands. Using sudo would try and run the command as an administrator, so you would need a password: unlink /path/to/symlink sudo unlink /path/to/symlink rm /path/to/symlink sudo rm /path/to/symlink

How to organize my js files

Generally speaking, combining all of the global scripts will boost performance, but so will enqueueing JS selectively – meaning if a script is only used on one CPT or template, you should only enqueue it there. Look into conditionally enqueueing JS in your functions.php. You can target specific sites by blog_id and target specific post … Read more