lumenpress/helper

Installs: 24

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/lumenpress/helper

v0.1.1 2017-10-08 08:33 UTC

This package is not auto-updated.

Last update: 2025-10-25 08:26:28 UTC


README

$wp = \LumenPress\Helper::wrap(['wp_', 'wp_get_'], [
    
]);

$is = \LumenPress\Helper::wrap(['is_', 'wp_is_'], [
    'php' => true,
]);

wp_head();
// equals
$wp->head; // execute only once
$wp->head(); // execute every time

wp_is_mobile();
// equals
$is->mobile;
$is->mobile();