I have a directory with about 100 sub directories. Some of these sub directories are "Wordpress folders" others are not. What I would like to do is change the ownership of the themes and plugin directories inside the "Wordpress folders". I'm using this command to get the list of these directories:
find . -maxdepth 3 -type d | grep 'wp-content/themes\|wp-content/plugins'
How could I make change the ownership of all plugins and themes subdirectories?