{"id":15065501,"url":"https://github.com/sujin2f/wp_express","last_synced_at":"2026-01-19T21:33:25.389Z","repository":{"id":40802475,"uuid":"53436709","full_name":"sujin2f/wp_express","owner":"sujin2f","description":"Quick Wordpress Development Module","archived":false,"fork":false,"pushed_at":"2023-01-07T05:51:09.000Z","size":18817,"stargazers_count":1,"open_issues_count":29,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-16T16:34:24.917Z","etag":null,"topics":["wordpress","wordpress-development"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sujin2f.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-03-08T18:50:22.000Z","updated_at":"2020-07-08T22:28:13.000Z","dependencies_parsed_at":"2023-02-06T13:16:28.979Z","dependency_job_id":null,"html_url":"https://github.com/sujin2f/wp_express","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/sujin2f/wp_express","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujin2f%2Fwp_express","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujin2f%2Fwp_express/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujin2f%2Fwp_express/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujin2f%2Fwp_express/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sujin2f","download_url":"https://codeload.github.com/sujin2f/wp_express/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sujin2f%2Fwp_express/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28585515,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T20:45:59.482Z","status":"ssl_error","status_checked_at":"2026-01-19T20:45:41.500Z","response_time":67,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["wordpress","wordpress-development"],"created_at":"2024-09-25T00:39:22.028Z","updated_at":"2026-01-19T21:33:25.373Z","avatar_url":"https://github.com/sujin2f.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WordPress Express\n\n[![Build Status](https://travis-ci.org/sujin2f/wp_express.svg)](https://travis-ci.org/sujin2f/wp_express)\n[![Coverage Status](https://coveralls.io/repos/github/sujin2f/wp_express/badge.svg?branch=master)](https://coveralls.io/github/sujin2f/wp_express?branch=master)\n\n\u003cp align=\"center\" style=\"background-color:black;\"\u003e\n  \u003cimg src=\"logo.png\"\u003e\n\u003c/p\u003e\n\nQuick Wordpress Development Module which helps you to make new admin pages, custom post types, and taxonomies.\n\n## Initialize\nInclude autoload.php, and you are ready.\n\n```php\ninclude_once( $your_path_to . '/wp_express/autoload.php' );\n```\n\n## Usage\n```php\nuse Sujin\\Wordpress\\WP_Express\\Admin;\nuse Sujin\\Wordpress\\WP_Express\\Settings_Section;\nuse Sujin\\Wordpress\\WP_Express\\Fields\\Settings\\Input;\n\n// Create a new admin page in the root of admin menu\n$admin_page_root = Admin::get_instance( 'Admin Root');\n// Change position by position id\n$admin_page_root-\u003eposition( 200 );\n\n// Create another admin page under $test_admin_page_1\n$admin_page_child = Admin::get_instance( 'Admin Child' )\n\t-\u003eposition( $root );\n// Change position under Settings\n$admin_page_child-\u003eposition( 'settings' );\n// Change position under other menu\n$admin_page_child-\u003eposition( 'Plugin Name' );\n// Add a link in the Plugins list\n$admin_page_child-\u003eplugin( 'Akismet' );\n// Set menu icon (use WP Dashicons)\n$admin_page_child-\u003eicon( 'dashicons-buddicons-activity' );\n\n// Create a new setttings section (default location is settings page)\n$settings_section = Settings_Section::get_instance( 'Settings Section' );\n// Append the settings section into the admin page\n$admin_page_child-\u003eappend( $settings_section );\n\n// Create a new settting field `headline`\n$headline = Input::get_instance( 'Headline' );\n// Append the input into the settings section\n$settings_section-\u003eappend( $headline );\n// Change the input type to date\n$headline-\u003etype( 'date' );\n// Change the input to the multiple value\n$headline-\u003esingle( false );\n\n// Settngs could be the chaining assignment\n$headline\n\t-\u003eshow_in_rest( true )\n\t-\u003esingle( true )\n\t-\u003eappend_to( $settings_section );\n```\n\nThis 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.\n\n### Admin Items\n- [Admin Menu](doc/admin-items/ADMIN_MENU.md)\n- [Settings Section](doc/admin-items/SETTINGS_SECTION.md)\n- [Post Type](doc/admin-items/POST_TYPE.md)\n- [Meta Box](doc/admin-items/META_BOX.md)\n- [Taxonomy](doc/admin-items/TAXONOMY.md)\n\n### Form Fields\n- [Attachment](doc/form-fields/ATTACHMENT.md)\n- [Checkbox](doc/form-fields/CHECKBOX.md)\n- [Editor](doc/form-fields/EDITOR.md)\n- [Input](doc/form-fields/INPUT.md)\n- [Radio](doc/form-fields/RADIO.md)\n- [Select](doc/form-fields/SELECT.md)\n- [Textarea](doc/form-fields/TEXTAREA.md)\n\nhelpers\n### Helpers\n- [Argument](doc/helpers/ARGUMENT.md)\n- [Assets Loader](doc/helpers/ASSETS_LOADER.md)\n- [Autoloader](doc/helpers/AUTOLOADER.md)\n- [Enum](doc/helpers/ENUM.md)\n- [Google Font Loader](doc/helpers/GOOGLE_FONT_LOADER.md)\n- [JSON Schema](doc/helpers/JSON_SCHEMA.md)\n- [Multiton/Singleton](doc/helpers/MULTITON_SINGLETON.md)\n- [Transient](doc/helpers/TRANSIENT.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsujin2f%2Fwp_express","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsujin2f%2Fwp_express","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsujin2f%2Fwp_express/lists"}