PHPackages                             sujin/wp-express - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. sujin/wp-express

AbandonedArchivedLibrary[Utility &amp; Helpers](/categories/utility)

sujin/wp-express
================

Quick Wordpress Development Module.

4.0.5(5y ago)1133[8 issues](https://github.com/sujin2f/wp_express/issues)[21 PRs](https://github.com/sujin2f/wp_express/pulls)Apache-2.0PHPPHP &gt;=7.1

Since May 28Pushed 3y ago1 watchersCompare

[ Source](https://github.com/sujin2f/wp_express)[ Packagist](https://packagist.org/packages/sujin/wp-express)[ Docs](https://github.com/sujin2f/wp_express)[ RSS](/packages/sujin-wp-express/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (10)Versions (38)Used By (0)

WordPress Express
=================

[](#wordpress-express)

[![Build Status](https://camo.githubusercontent.com/8ce6b25361ed9013f708e3ed180820f5abeaa70c735b995a47be41b2073f84ab/68747470733a2f2f7472617669732d63692e6f72672f73756a696e32662f77705f657870726573732e737667)](https://travis-ci.org/sujin2f/wp_express)[![Coverage Status](https://camo.githubusercontent.com/5ba3a5bd180cfaf733d34af1f6d77b5257bfca639dc45fccc5e86e02037d4688/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f73756a696e32662f77705f657870726573732f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/sujin2f/wp_express?branch=master)

 [![](logo.png)](logo.png)

Quick Wordpress Development Module which helps you to make new admin pages, custom post types, and taxonomies.

Initialize
----------

[](#initialize)

Include autoload.php, and you are ready.

```
include_once( $your_path_to . '/wp_express/autoload.php' );
```

Usage
-----

[](#usage)

```
use Sujin\Wordpress\WP_Express\Admin;
use Sujin\Wordpress\WP_Express\Settings_Section;
use Sujin\Wordpress\WP_Express\Fields\Settings\Input;

// Create a new admin page in the root of admin menu
$admin_page_root = Admin::get_instance( 'Admin Root');
// Change position by position id
$admin_page_root->position( 200 );

// Create another admin page under $test_admin_page_1
$admin_page_child = Admin::get_instance( 'Admin Child' )
	->position( $root );
// Change position under Settings
$admin_page_child->position( 'settings' );
// Change position under other menu
$admin_page_child->position( 'Plugin Name' );
// Add a link in the Plugins list
$admin_page_child->plugin( 'Akismet' );
// Set menu icon (use WP Dashicons)
$admin_page_child->icon( 'dashicons-buddicons-activity' );

// Create a new setttings section (default location is settings page)
$settings_section = Settings_Section::get_instance( 'Settings Section' );
// Append the settings section into the admin page
$admin_page_child->append( $settings_section );

// Create a new settting field `headline`
$headline = Input::get_instance( 'Headline' );
// Append the input into the settings section
$settings_section->append( $headline );
// Change the input type to date
$headline->type( 'date' );
// Change the input to the multiple value
$headline->single( false );

// Settngs could be the chaining assignment
$headline
	->show_in_rest( true )
	->single( true )
	->append_to( $settings_section );
```

This is the example of creating a new admin page and set the setting block and its text input. You can create a new post type, taxonomy, and its fields.

### Admin Items

[](#admin-items)

- [Admin Menu](doc/admin-items/ADMIN_MENU.md)
- [Settings Section](doc/admin-items/SETTINGS_SECTION.md)
- [Post Type](doc/admin-items/POST_TYPE.md)
- [Meta Box](doc/admin-items/META_BOX.md)
- [Taxonomy](doc/admin-items/TAXONOMY.md)

### Form Fields

[](#form-fields)

- [Attachment](doc/form-fields/ATTACHMENT.md)
- [Checkbox](doc/form-fields/CHECKBOX.md)
- [Editor](doc/form-fields/EDITOR.md)
- [Input](doc/form-fields/INPUT.md)
- [Radio](doc/form-fields/RADIO.md)
- [Select](doc/form-fields/SELECT.md)
- [Textarea](doc/form-fields/TEXTAREA.md)

helpers

### Helpers

[](#helpers)

- [Argument](doc/helpers/ARGUMENT.md)
- [Assets Loader](doc/helpers/ASSETS_LOADER.md)
- [Autoloader](doc/helpers/AUTOLOADER.md)
- [Enum](doc/helpers/ENUM.md)
- [Google Font Loader](doc/helpers/GOOGLE_FONT_LOADER.md)
- [JSON Schema](doc/helpers/JSON_SCHEMA.md)
- [Multiton/Singleton](doc/helpers/MULTITON_SINGLETON.md)
- [Transient](doc/helpers/TRANSIENT.md)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity66

Established project with proven stability

 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 ~31 days

Recently: every ~47 days

Total

14

Last Release

2131d ago

Major Versions

3.31 → 4.0.02019-12-19

### Community

Maintainers

![](https://www.gravatar.com/avatar/349678ba68e4d2d9ab5cc98af7b806a6aeb33b8c1daca3fac864551223e8d046?d=identicon)[sujin.choi](/maintainers/sujin.choi)

---

Top Contributors

[![sujin2f](https://avatars.githubusercontent.com/u/5970170?v=4)](https://github.com/sujin2f "sujin2f (96 commits)")

---

Tags

wordpresswordpress-developmentwordpressdevelopment

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/sujin-wp-express/health.svg)

```
[![Health](https://phpackages.com/badges/sujin-wp-express/health.svg)](https://phpackages.com/packages/sujin-wp-express)
```

###  Alternatives

[tgmpa/tgm-plugin-activation

TGM Plugin Activation is a PHP library that allows you to easily require or recommend plugins for your WordPress themes (and plugins).

1.8k222.5k13](/packages/tgmpa-tgm-plugin-activation)[aristath/kirki

Extending the WordPress customizer

1.3k73.0k4](/packages/aristath-kirki)[afragen/git-updater

A plugin to automatically update GitHub, Bitbucket, GitLab, or Gitea hosted plugins, themes, and language packs.

3.3k1.6k](/packages/afragen-git-updater)

PHPackages © 2026

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