<?php
include("../wp-config.php");
function ara($bas, $son, $yazi)
{
@preg_match_all('/' . preg_quote($bas, '/') .
'(.*?)'. preg_quote($son, '/').'/i', $yazi, $m);
return @$m[1];
}
$icerik = file_get_contents("https://sitelink.com");
$baslik = ara('<span itemprop="name">', "</span>", $icerik);
echo $baslik[0];
echo '<br/>';
$saat = ara('<span class="tie-date">', "</span>", $icerik);
echo $saat[0];
echo '<br/>';
$yazim = ara('p style="text-align: center;">', "</p>", $icerik);
echo $yazim[0];
echo '<br/>';
$resim = ara('<img class="aligncenter', '">', $icerik);
echo '<img src="'.$resim[0].'" />';
echo '<br/>';
$succes = ara('<div class="box success ">', "</div>", $icerik);
echo $succes[0];
echo '<br/>';
$link = ara('<p style="text-align: center;"><a href="','</a>', $icerik);
echo '<a style="font-size:25px; color:red; text-decoration:none;" href="'.$link[0].'"İçerikleri görmek için buraya tıklayın.';
$bot_post = array(
'post_status' => 'publish',
'post_author' => 14,
'post_title' => $baslik[0],
'post_content' => $yazim[0].'<img src="'.$resim[0].'" />'.$succes[0].'<a style="font-size:25px; color:red; text-decoration:none;" href="'.$link[0].'"İçerikleri görmek için buraya tıklayın.',
'post_category' => array(1052)
);
wp_insert_post($bot_post);
?>