Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Debug, Result of response using wp_remote_get */
- function debug() {
- $instagram = wp_remote_get(
- 'https://www.instagram.com/rakapuckarpunktcom/?__a=1',
- array(
- 'timeout' => 10,
- )
- );
- echo 'Instagram: ';
- var_dump( wp_remote_retrieve_response_message( $instagram ) );
- echo '<br>';
- $facebook = wp_remote_get(
- 'https://www.facebook.com/rakapuckarcom/',
- array(
- 'timeout' => 10,
- )
- );
- echo 'Facebook: ';
- var_dump( wp_remote_retrieve_response_message( $facebook ) );
- var_dump( $facebook );
- }
- add_action( 'jnews_after_body', 'debug' );
Add Comment
Please, Sign In to add comment