phpwordpresspluginswordpress-themingtheme-development

How can I get WordPress plugin version number on the theme?


I want to get a specific plugin version number on my theme area. For example, I want to show the currently active WooCommerce plugin version number. How can I get it?

Thanks


Solution

  • You need something like this

    $plugin_dir = WP_PLUGIN_DIR . '/woocommerce/woocommerce.php';
    
    $plugin_data = get_plugin_data($plugin_dir);
    
    echo $plugin_data['Version'];