WP Manifestindependent plugin directory
manifest / content / edwbasic-suite

EDWBasic Suite

EDW Basic Wordpress Plugin

by chrisowensdev · github.com/chrisowensdev/edwbasic-suite

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/chrisowensdev/edwbasic-suite/archive/refs/heads/main.zip

A single WordPress plugin that bundles:

  • Top-level EDWBasic admin menu with a one-page settings UI.
  • Stores all landing data in a single option edwbasic_all.
  • Registers CPTs: badge, service, step, testimonial.
  • Groups the CPT menus under the EDWBasic menu.
  • Provides edwbasic_suite_get_payload() (and a compatibility alias edwbasic_get_payload()) to render the landing template.
  • Caches the payload in a transient and auto-clears on option/CPT changes.

Install

  1. Upload edwbasic-suite.zip via Plugins → Add New → Upload or unzip to Bedrock at web/app/plugins/edwbasic-suite.
  2. Activate EDWBasic Suite.
  3. Go to EDWBasic in the admin sidebar, fill in your content, and Save.
  4. In your page template, call edwbasic_get_payload($defaults) to retrieve all values.

Notes

  • If you previously had MU-plugins with the same functions/CPTs, remove or rename them to avoid duplication.
  • To make Services publicly accessible:
    add_filter('edwbasic_services_public', '__return_true');