I was running certain plugins for my twentyten theme (WP 3.1) prior to upgrading (WP 3.3) and so to make sure I didn’t lose them, I went into my FTP client and placed the previous plugin folder inside the theme folder of my child theme.
Why did you do this? It is entirely unnecessary, pointless, and counter-intuitive. Upgrading WordPress does not even touch \wp-content
, ever. Just leave the Plugins where they are, and they’ll remain there, safely, before, during, and after your WordPress core update.
Problem is that with the upgrade comes a new plugin folder.
Right. WordPress relies on those being where they are. (You can change the location for Plugins, Themes, and/or wp-content
, but that’s outside the scope of this question.
I’m trying to go the child theme route and figured it’d be best to save my plugins that were being used prior to the upgrade.
The purpose of a Child Theme is to preserve modifications to your Theme, and has nothing to do with Plugins. Twenty Ten doesn’t run Plugins from within its own Theme folder, and I’m assuming that your Child Theme doesn’t, either (again: advanced topic that is outside of this question).
So I have two plugin folders (one for parent theme and one for child theme) and not sure where to place the plugins of the child theme.
Put them back in \wp-content\plugins
. To repeat what I said before: Plugins belong in \wp-content\plugins
, not inside of Theme folders.