PHPackages                             uwebpro/wordpress - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Security](/categories/security)
4. /
5. uwebpro/wordpress

ActiveLibrary[Security](/categories/security)

uwebpro/wordpress
=================

A simple library for WordPress

v2.1(5y ago)0138MITPHPPHP &gt;=7.1

Since Apr 14Pushed 5y ago1 watchersCompare

[ Source](https://github.com/willpercey-gb/wp-helpers)[ Packagist](https://packagist.org/packages/uwebpro/wordpress)[ Docs](https://github.com/willpercey-gb/SimplifiedWordpress)[ RSS](/packages/uwebpro-wordpress/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (10)Dependencies (3)Versions (15)Used By (0)

SimplifiedWordpress
===================

[](#simplifiedwordpress)

### Duplicator

[](#duplicator)

```
(new \UWebPro\WordPress\Duplicator());

// Using Advanced Custom Fields or need to exlude post types?
(new UWebPro\WordPress\Duplicator())->exclude(['acf-field-group']);
```

### Ajax

[](#ajax)

```
$ajax = new \UWebPro\WordPress\WPAjax();

$ajax->setAction('load_more', {callback});

$ajax->setAuthAction('save_forms', {callback});

$ajax->setActionAll('get_availabilities', 'function callback here');
```

### Cron Scheduler

[](#cron-scheduler)

```
$cron = new WPSchedule();
$cron->schedule({callback})->hourly();
```

### Custom Post Types

[](#custom-post-types)

```
class PostTypes
{
    public const WHATS_ON = 'whats_on';
    public const SEE_AND_DO = 'see_and_do';
    public const STAY_OVER = 'stay_over';

    public const WHATS_ON_CATEGORY = 'event_type';
    public const SEE_AND_DO_CATEGORY = 'attraction_type';
    public const STAY_OVER_CATEGORY = 'establishment_type';

    public function __construct()
    {
        $types = new \UWebPro\WordPress\PostType();

        $types->new()->setTranslations('What\'s On', 'What\'s On')
            ->customIcon('dashicons-calendar-alt')
            ->register(self::WHATS_ON)
            ->registerTaxonimies('Event Type', 'Event Types')
        ->init();

        $types->new()->setTranslations('See and Do', 'See and Do')
            ->customIcon('dashicons-tickets')
            ->register(self::SEE_AND_DO)
            ->registerTaxonimies('Attraction Type', 'Attraction Types')
        ->init();

        $types->new()->setTranslations('Stay Over', 'Stay Over')
            ->customIcon('dashicons-admin-multisite')
            ->register(self::STAY_OVER)
            ->registerTaxonimies('Establishment Type', 'Establishment Types')
        ->init();
    //custom taxonomies
    (new \UWebPro\Wordpress\Taxonomies('post'))->register('Story Type', 'Story Types')->init();

    }
}
```

### Hashing IDs / Numbers

[](#hashing-ids--numbers)

```
$hash = new \UWebPro\WordPress\Hash(SECURE_AUTH_SALT, 8);
$hash->encode($post->ID);
//
$hash->decode($post->ID);

// Want a random string?
$hash->str_rand();
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~8 days

Total

14

Last Release

2118d ago

Major Versions

v0.1.2 → v1.02020-06-03

v1.1.3 → v2.02020-07-08

PHP version history (2 changes)v0.0.3.2PHP &gt;=7.0

v0.1PHP &gt;=7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/ca3a7016e84c48548703f96b6c4f62e6c7d543c8b7d17d4851115a15b35e5ab7?d=identicon)[UWebPro](/maintainers/UWebPro)

---

Top Contributors

[![willpercey-gb](https://avatars.githubusercontent.com/u/33656628?v=4)](https://github.com/willpercey-gb "willpercey-gb (37 commits)")

---

Tags

wordpresshashingajaxblogtypespostsduplicatoruwebpro

### Embed Badge

![Health badge](/badges/uwebpro-wordpress/health.svg)

```
[![Health](https://phpackages.com/badges/uwebpro-wordpress/health.svg)](https://phpackages.com/packages/uwebpro-wordpress)
```

###  Alternatives

[ircmaxell/password-compat

A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password\_hash

2.1k56.8M122](/packages/ircmaxell-password-compat)[symfony/password-hasher

Provides password hashing utilities

813137.2M91](/packages/symfony-password-hasher)[mikemclin/laravel-wp-password

Laravel package that checks and creates WordPress password hashes

863.4M2](/packages/mikemclin-laravel-wp-password)[lastguest/murmurhash

MurmurHash3 Hash

12910.2M52](/packages/lastguest-murmurhash)[passwordlib/passwordlib

A Password Hashing Library

377220.6k6](/packages/passwordlib-passwordlib)[paragonie/password_lock

Wraps Bcrypt-SHA2 in Authenticated Encryption

19348.7k1](/packages/paragonie-password-lock)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
