I lost all files of my wordpress website, but I have the database.
In it, there is a list of the plugins and themes. But I can't find any version info for these.
Does wp keep the version of the installed plugins/themes in sql database? Perhaps it's encoded somehow?
Thank you
CodePudding user response:
Wordpress save the theme and plugin details like active theme name, active plugin name. You can find these details in wp_options table in database.
CodePudding user response:
unless you have a plugin that tracked your updates and versions;
All version numbers are stored in the plugins themselves part of the docblock metadata, this is so updates go smoothly and don't conflict with the database; if you copy the plugsins into wp-content/plugins most(repuitable) plugsin will attempt to process an update.
sorry I couldnt be more help