skip to Main Content

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

2

Answers


  1. Chosen as BEST ANSWER

    Yes, it's working. But the array 'version' word would be capital word 'Version'. Otherwise, it's showing Notice: Undefined index.

    $plugin_dir = WP_PLUGIN_DIR . '/woocommerce/woocommerce.php';

    $plugin_data = get_plugin_data($plugin_dir);

    echo $plugin_data['Version'];


  2. You need something like this

    $plugin_dir = WP_PLUGIN_DIR . '/woocommerce/woocommerce.php';
    
    $plugin_data = get_plugin_data($plugin_dir);
    
    echo $plugin_data['Version'];
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search