grzegorz-jamroz/wp-extensions

There is no license information available for the latest version (v1.0.1) of this package.

Library used in Rockujemy themes and plugins.

v1.0.1 2024-03-10 09:18 UTC

This package is auto-updated.

Last update: 2024-05-10 09:36:04 UTC


README

Library used in Rockujemy themes and plugins.

Code Coverage Release Version

Installation

Open console in your WordPress theme folder or plugin folder:

cd wordpress\wp-content\themes\your-theme

or

cd wordpress\wp-content\plugins\your-plugin

Run Composer to install this package in your project:

composer require grzegorz-jamroz/wp-extensions

Remember to require vendor/autoload.php file in your code to enable the class autoloading mechanism provided by Composer.

You can do it for example in the beginning of: wordpress/wp-content/themes/your-theme/functions.php

require_once __DIR__ . '/vendor/autoload.php';

Usage