Archives for PHP
Calling wordpress shortcodes from within PHP code
I was looking for a way to display my linked in profile in the sidebar. template needed to be edited – but I wasn’t sure how to call the shortcode…
PHP–JSON object to array
The trick was to pass in ‘true’ to the This returns an associative array instead of an object.$json_string = ''; $jsondata = file_get_contents($json_string); $obj = json_decode($jsondata,true); echo ‘<pre>’; print_r($obj);