WPMU Demo Plugin
Demo plugin
by Balakrishnan D · github.com/balakrishnandsr/wpmu-simple-form · website
★ 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/balakrishnandsr/wpmu-simple-form/archive/refs/heads/main.zipDeclares an update source (ttps://wordpress.org/plugins/wpmu-simple-form/), so updates arrive through the plugin's own updater.
From the readme
WPMU Simple Form
A simple form plugin.
Usage
WPMU Simple Form Plugin used to store and get user data.
Available Filters
filter: wpmusimpleformlistcontent: to change the list content/style
filter: wpmusimpleformcustomizablecontent: to change the form content/style
Available ShortCode
[myform]: to show the form
[mylist]: to list the stored data
REST API - End Points
www.yoursite.com/wp-json/wpmu-simple-form-api/v1: to list all stored result (GET)
www.yoursite.com/wp-json/wpmu-simple-form-api/v1: to store the new data. example {'username': 'Bala', 'usernotes': 'Example Note'} (Post)
www.yoursite.com/wp-json/wpmu-simple-form-api/v1/id: to get the stored result by id. exmple we send the numbers(id of data) via url (Get)