1.0.0 • Published 2 years ago

@sumotto/has-wordpress-plugin-directory v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Has WordPress Plugin Directory

It runs through the files tree from the call file, and finds the first directory in which there is a plugins directory, usually the wp-content directory, but not always.

Then simply checks that in the directory plugins there is a directory named that you indicated the only parameter of this function.

Installation

You can install the package as follows:

npm install @sumotto/has-wordpress-plugin-directory --save-dev

# or

yarn add @sumotto/has-wordpress-plugin-directory --dev

Usage

Include:

const hasWordPressPluginDirectory = require( '@sumotto/has-wordpress-plugin-directory' );

// or

import hasWordPressPluginDirectory from '@sumotto/has-wordpress-plugin-directory';

And check plugin folder name:

const hasWoocommerceDirectory = hasWordPressPluginDirectory( 'woocommerce' );
if ( hasWoocommerceDirectory ) {
	// Your code here.
}

License

MIT License