WP Manifestindependent plugin directory
manifest / forms / formxp

Form XP

demo form plugin that create db tables, shortcode & has a custom endpoint

by Denis Bosire · github.com/denischweya/formxp

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/denischweya/formxp/archive/refs/heads/main.zip

Readme

Use the shortcode [custom_form] to display the input form.

Use the shortcode [custom_data_display] to display the data table with search functionality.

To use these new API endpoints:

To retrieve data:

Send a GET request to http://your-site.com/wp-json/formxp/v1/data

You can add a search parameter like this: http://your-site.com/wp-json/custom-plugin/v1/data?search=keyword

To insert data:

Send a POST request to http://your-site.com/wp-json/formxp/v1/data with a JSON body like this:

jsonCopy{
  "name": "John Doe",
  "email": "john@example.com",
  "message": "Hello, World!"
}

Remember to replace http://your-site.com with your actual WordPress site URL.

Read the full README on GitHub →