How to send messages when a customer is registered

If you’re talking about WordPress user registration, you want to start by reading about the User Register hook: https://codex.wordpress.org/Plugin_API/Action_Reference/user_register Then your code would be something like this which will automatically fire each time a user registers on the site: add_action(‘user_register’,’send_sms’); function send_sms($user_id){ // Code for your SMS API Here } The code would go in … Read more

How to query WordPress from another application?

different solutions use the rss or atom-feed (each is xml) and parse it; has always fast and sure the post and data inside; easy to use with different langugage, all frameworks has implement for parse xml. use the xmlrpc interface; but is optional in WP and you must read the documentation for the API scan … Read more

Easiest way to call an External rest API?

Mark is right, without knowing more, this is a hard question to answer. This is a general guide though (not written by me) that I’ve used for my projects in the past. https://yoast.com/wordpress-http-api/ It should get you started and then if you have other questions, please let us know.

Theme Customizer API Live Preview

I know this is an older post, but in case you’re still looking for the answer: Add this line to your tcx_register_theme_customizer function: $wp_customize->get_setting( ‘tcx_notification_text’ )->transport=”postMessage”; This gets the value from the field and passes it along to the Javascript to put into the live preview.