How to submit a button automatically after every scheduled hours?

You were on the right track with the second try. Put this is functions.php, or wherever: if (!wp_next_scheduled(‘fetch_webcategories_hook’)) { wp_schedule_event( time(), ‘hourly’, ‘fetch_webcategories_hook’ ); } add_action ( ‘fetch_webcategories_hook’, ‘fetch_webcategories’ ); It’s not quite a real hourly schedule because somebody has to visit the site to trigger it, so if you have VERY low traffic it … Read more

External api call using wordpress

Your curl request should work from the command line. Put you will want to use make it in a PHP file: $ch = curl_init(); $url = “https://api.com/”; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); http_build_query(array(‘postvar1’ => ‘value1’))); // Receive server response … curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $api_output = curl_exec($ch); curl_close($ch); Which php file you put the curl … Read more

How can I use React packages with the clasic editor?

I solved this by reading from the DOM. Not the prettiest way but it does what I needed. const CustomUpdateComponent = {…}; document.addEventListener(‘DOMContentLoaded’, () => { // replace update button with our own const publishingActionButton = document.querySelector( ‘#publishing-action’ ); if (publishingActionButton) { const postId = document.querySelector( ‘#post_ID’ ).value; render( <CustomUpdateComponent post={postId} … />, publishingActionButton ); … Read more