'ae263077f0e205f2b8a719bec86c9e3c', 'token' => '3f9e2a4a9ad1b9c9115844e31df6720f'); $url .= '?'.http_build_query($params); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HEADER, false); $data = curl_exec($ch); $status = curl_getinfo($ch, CURLINFO_HTTP_CODE); if($status == 200) { $products = json_decode($data, true); $promotions = array(); foreach($products['products'] as $p) { if($p['info']['status'] == 'publish' && $p['info']['slug'] != $plugin) { foreach($p['info']['tags'] as $tag) { if($tag['slug'] == 'cross-promote' || $tag['slug'] == $plugin.'-extension') { $promotions[] = $p; } } } } } $output = ''; $output .= '

Premium WordPress Plugins

BUILT FROM SCRATCH WITH ❤

'; if(isset($promotions)) { $output .= '
'; } $output .= '

see more @ kraftpress.it

'; echo $output;