• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Simplify

Simplify

Wordpress Development

  • Blog
  • Form Examples
  • Contact Us

Setup Endpoint in WordPress Site

An endpoint is a URL that a webhook can be sent to and in WordPress, can be setup to run a function directly as a result.

The Code
function register_endpoint()
{
    register_rest_route('simplify/v1', '/my_custom_endpoint', array(
        'methods'  => 'POST',
        'callback' => 'my_custom_function',
    ));
}
add_action('rest_api_init', 'register_endpoint');



How to Use It

The code above when placed inside a file that is included by your custom plugin or is in functions.php, will set up an endpoint that if it was in a site “test.com” would have the URL “test.com/wp-json/simplify/v1/my_custom_endpoint”

Whenever that URL is called, it will run the function “my_custom_function”.

NOTE: As long as the file with “my_custom_function” is included in your custom plugin or in functions.php the callback from the endpoint will find the function. They do not need to be in the same file.

Filed Under: WordPress Development October 25, 2023 Leave a Comment

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Categories

  • Affinipay
  • ApproveMe.com
  • Caching
  • Development
  • Genesis Framework
  • GIT
  • Gravity Forms
  • Gravityflow
  • GravityView
  • HubSpot
  • IDE's
  • Integrations
  • Javascript
  • LegalSigning
  • MemberPress
  • Oncehub
  • PHP Storm
  • SiteGround Management
  • Slack
  • Stripe
  • Stripe
  • Testing
  • Troubleshooting
  • Uncategorized
  • User Functionality
  • Visual Code
  • Web Development
  • Website Maintenance
  • WordPress Development
  • WP Webhook Pro

Footer

Design

With an emphasis on typography, white space, and mobile-optimized design, your website will look absolutely breathtaking.

Learn more about design.

Content

Our team will teach you the art of writing audience-focused content that will help you achieve the success you truly deserve.

Learn more about content.

Strategy

We help creative entrepreneurs build their digital business by focusing on three key elements of a successful online platform.

Learn more about strategy.

Copyright © 2023 · Genesis Sample on Genesis Framework · WordPress · Log in