$titulo_final, 'link' => $link, 'miniatura' => $thumbnail, 'categoria' => $categoria_id ) ); $opts = array('http' => array( 'method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata ) ); $context = stream_context_create($opts); file_get_contents('http://www.pastando.com.br/plugin_wordpress.php', false, $context); */ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.pastando.com.br/plugin_wordpress.php"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, true); $data = array( 'titulo' => $titulo_final, 'link' => $link, 'miniatura' => $thumbnail, 'categoria' => $categoria_id ); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); $output = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); } // fim do postar = 'sim' } //fim da função function my_post_options_box() { add_meta_box('post_info', 'Agregador de links Pastando.com.br', 'custom_post_info', 'post', 'side', 'high'); } function custom_post_info() { global $post; ?>