Skip to content

Instantly share code, notes, and snippets.

@lloc
Last active December 22, 2017 10:03
Show Gist options
  • Select an option

  • Save lloc/4525366 to your computer and use it in GitHub Desktop.

Select an option

Save lloc/4525366 to your computer and use it in GitHub Desktop.
<?php
add_shortcode( 'countryinfo', function ( $atts ) {
$params = shortcode_atts( [ 'lang' => 'de', 'country' => 'DE', 'username' => 'USERNAME' ], $atts );
$url = add_query_arg( $params, 'http://ws.geonames.org/countryInfo' );
$result = wp_remote_get( $url );
if ( is_wp_error( $result ) ) {
return $result->get_error_message();
}
return $result['body'];
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment