Can I list all installed plugins/versions and wp version from API
Yes, there is a way to get that information programmatically. WordPress Version Info The WordPress version exists as a global, but you can also get it using the get_bloginfo() function: global $wp_version; echo $wp_version; // OR $wordpress_version = get_bloginfo( ‘version’ ); echo $wordpress_version; Plugin Info For retrieving plugin info, use the get_plugins() function. You’ll need … Read more