How to send the featured image of a post to an API?

Here is an idea for sending a featured image (file data) on API and setting the image as a featured image on the server. Get File data from URL using following function: /*fetch the file from URL*/ function prefix_get_file_data_from_url( $url ) { $response = wp_remote_get( $url ); if ( is_array( $response ) && ! is_wp_error( … Read more

trigger WordPress rest any API call

There’s actually a hook that will fire for all REST API requests. It’s the recommended hook to use when adding your own API endpoints, so you can be sure that this hook will be fired for every single REST API request that your website handles. /** * @param \WP_REST_Server $wp_rest_server */ function capture_all_rest_api_requests( $wp_rest_server ) … Read more

Pass multiple tags slug to rest API

You’re getting the error because the URL format is invalid — that & there is invalid because there’s no ? in the URL: wp-json/w1/unica/posts/unica-12-1&interact, but even if you actually added the ?, that’s not how to pass multiple slugs to the API. So how can you pass multiple slugs to your custom endpoint? register_rest_route( ‘w1/page_name/’, … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)