It points to options.php
because it uses the Settings API. Well, not completely, but that’s not the point now. You should not change that.
What you can do, to add your own logic: hook into the save process for that option:
add_filter( "sanitize_option_webweb-member-status-group", "your_extra_handler" );
function your_extra_handler( $input )
{
if ( isset ( $_POST['your_extra_post_field'] ) )
// do something awesome
return $input; // don’t touch that value
}
Related Posts:
- Using a custom plugin to capture input data via Ajax and PHP
- AJAX fileupload – TypeError: not a function ajaxSubmit()
- Submit Form data to another page via Ajax (WordPress Way)
- What’s the preferred method of writing AJAX-enabled plugins?
- How can I make it so the Add New Post page has Visibility set to Private by default?
- Show Similar Post Titles ( Similar to Stack Exchange )
- How to add option box in “Edit Post” plugin API?
- How do I unlock a post programmatically?
- Let readers suggest edits from the frontend
- How to pass JavaScript variable to PHP in wordpress widget?
- Where should my plugin POST to?
- How To Ignore a Filter On Applying Filter the Content In a Function
- Plugin development: how to create a form and get custom data?
- AJAX Call Via Vanilla JavaScript In WordPress Plugin Development
- How to get posts by content?
- Custom plugin giving: wp-admin/admin-ajax.php 400 (Bad Request)
- Execute a function using ajax
- Publish Post After Click On A Link
- Errors while using ajax from external wordpress page
- shortcode doesn’t work
- Built in admin ajax hooks?
- Ajax call doesn’t work in frontend but it’s working in backend (when I’m logged in)
- Why is my ajax call refreshing the page?
- Admin-ajax.php is dying “0” without processing function
- how to use ajax to display from database and load more in wordpress plugin
- Action on post publish
- How to remove an Ajax action
- How to create popup same as wordpress popup feature
- Only execute jQuery function(on document ready) on the page has shortcode from plugin [duplicate]
- Admin page: form with enctype=”multipart/form-data” does not transfer its data
- jQuery Plugin to use WordPress functions in AJAX request
- $wpdb working with ajax but showing ajax error instead of success
- How use %like% in sql statement wordpress
- Ajax gives 400 error
- Adding Attachment Display Settings in custom media frame
- Check if email address exists front end with AJAX in a plugin
- WordPress Plugin Page is Loading in Admin Content Container Instead of Separate Page
- Execute a plugin only on post pages
- How to trigger $_GET request within admin plugin page?
- WooCommerce get_price returning wrong price when used via ajax
- Custom form action to handle data inside a plugin
- Simple ajax call not working in wordpress plugin
- wp_create_nonce function doesn’t work inside a plugin?
- Form isn’t inserting data into database with ajax plugin
- New User Form – Custom Menu Page
- AJAX search posts and pages
- finding whether request is for post, and post id
- __callStatic method handler passed to add_action causes bug in PHP
- Display post lists in 2nd paragraph
- Ajax contact form widget plugin data not insert in database
- Contributive page where people logged in can write
- Best place for if/else piece of code related to custom plugin?
- Ajax call returning 0
- Ajax fail and get 504 error
- Checkbox conflict in my custom plugin admin page
- Trying to fix form resubmition with PRG (Getting error: Cannot modify header information – headers already sent by)
- Create tabs in admin options page from custom post type loop
- Display wordpress post’s in popup?
- What are the Best Practises When Using AJAX in Plugin Development?
- Redirect to another page using contact form 7? [closed]
- Admin AJAX doesn’t work in plugin admin page – Even though code is copied verbatim from WordPress Codex
- How can I see $post object in frontend from functions.php?
- Allow members to create groups on my site
- How to use Datatable with Ajax when creating plugin on WordPress?
- add tags to wordpress post using REST API
- Prefix WordPress Taxonomy Tags With Hashtag Symbol Like Twitter
- AJAX update fails for public/non-admin users
- WordPress Ajax request “Failed to load resource: the server responded with a status of 400 ()”
- WordPress Product Detail and catalog
- WordPress ajax error 400 bad request for sending data to remote site [duplicate]
- Ajax call to php function doesn’t work PHP code
- Is it possible to create duplicate post on other site (either push, on publish, or pull, periodically)?
- ajax voting for custom post type
- submit form data to wordpress existing database table using my plugin
- Custom plugin giving: wp-admin/admin-ajax.php 400 (Bad Request)
- Overwriting Plugin’s Ajax callback function from theme
- How can I get the Post ID and Post Type within a Must Use Plugin?
- My ajax request don´t work and return 0
- WordPress environment not loading properly
- Get content and send to 3rd party
- wordpress ajax pagination object value does not change
- Creating fields in the database
- Custom feed parameters / Template overriding
- Undefined variable _POST
- Help me with my first very basic plugin
- Plugin Admin Page Ajax-Admin call returning 0, URL set correctly. Implemented localized scripts but did not fix it
- Load css classes after using ajax calls
- Plugin to display text before a post
- How to get an error message if a form is empty (plugin: Post for site) [closed]
- wordpress Ajax success doesn’t return the value
- Jquery post responses 500 error after some time and lastly an 503 error
- Inline AJAX script passing variables to PHP
- warning wp session
- wordpress admin-ajax bad request 400
- Display file contents within Plugin
- Trying to Find the PHP File/Function that Handles a Specific Form Action URL
- I am trying to add form using ACF plugin and acf_form() function, but my user fields dont show up properly
- Form submission issue in wordpress admin (custom plugin) using $_GET for searching & filtering
- WP Form Date Field – Remove Day option
- Ajax response from Media Selection does not update ALL information more than once