Get all options saved by another plugin

Your best option is likely to copy all the names into your plugin to use for retrieval. Of course, this could change when the plugin is updated. When options are saved in the database using update_option() there’s no indication of which plugin they came from that gets stored anywhere. If the options all use a particular prefix though, you could construct a SQL query to pull them from the options table based on that prefix.

For instance, if the prefix to all options for the plugin was ‘abcd_’, you could use a query like this:

select * from $wpdb->options where option_name like 'abcd_%'