<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><h1>Добавляем статьи автоматически в рубрику</h1><?
error_reporting(7);
ini_set('display_errors','On');
require( '../wp-blog-header.php' );
if($_POST['parol']==''){
// выводим в начале настройки
?>
<p>Все статьи должны быть закачены в папку <code>article</code> в виде текстовых файлов. 1 статья = 1 файл.</p>
<form action="" method="post" name="form">
<table width="650" border="0" cellpadding="5" cellspacing="0">
<tr>
<td><b>Пароль</b></td>
<td><input name="parol" type="password" size="10" value=""></td>
</tr>
<tr>
<td><b>ID рубрики куда импортируем</b></td>
<td><input name="categ" type="text" size="10" value=""></td>
</tr>
<tr>
<td><b>ID картинки из базы WP</b></td>
<td><input name="image" type="text" size="10" value=""></td>
</tr>
<tr>
<td><b>Название статьи берём из названия файла?</b></td>
<td><input name="nazvanie" type="checkbox" value="1" checked></td>
</tr>
<tr>
<td><b>Сервер IHC?</b></td>
<td><input name="IHC" type="checkbox" value="1"></td>
</tr>
<tr>
<td><b>Удалить из текстов фразу</b></td>
<td><input name="del[]" type="text" size="20" value=""><br/><input name="del[]" type="text" size="20" value=""><br/><input name="del[]" type="text" size="20" value=""></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" style="width:400px; height:35px;font-weight:bolder; cursor:pointer;" value=" Импорт! " onclick="ss();"></td>
</tr>
</table>
</form>
<?
}elseif($_POST['parol']=='wx'){
// работаем
// перебираем файлы
$dir='articleOk';
$skip = array('.', '..', 'index.php');
$files = scandir($dir);
foreach($files as $file) {
if(!in_array($file, $skip)){
echo'<br/> <b>'.$file.' </b> ';
//читаем файл
$str_file=file_get_contents($dir.'/'.$file);
if($str_file===FALSE){
echo'Файл '.$file.' не считан!';
}else{
// удаляем из текста фразы
if(count($_POST['del'])>0){
// замена
$str_file=str_replace($_POST['del'],"",$str_file);
}
// разбираем файл и пишем в базу
if($_POST['nazvanie']==1){
// название из названия файла
$nazvanie=str_replace('.txt','',$file);
if($_POST['IHC']==1)
$nazvanie=iconv('windows-1251','UTF-8',$nazvanie);
}else{
// из файла берём первую строку
//echo $str_file;
$abzac=strpos($str_file, PHP_EOL);
if($abzac>200)
$abzac=strpos($str_file, ' ',100);
$nazvanie=substr($str_file,0,$abzac);
//обрезаем статью
$str_file=substr($str_file,$abzac);
}
// абзац для конструкции ааа.5
if (preg_match_all('/[а-я.]+[0-9]/i', $str_file, $found, PREG_SET_ORDER)) {
foreach($found as $val){
preg_match("/([а-я.]+)([0-9]+)/", $val[0], $matches);
//print_r($matches);
$str_file=str_replace($matches['0'],$matches['1']."\r\n \r\n".$matches['2'],$str_file);
}
}
// абзац для конструкции ааа.Ааа
if (preg_match_all('/[а-я]+[.]+[А-Я]/i', $str_file, $found, PREG_SET_ORDER)) {
foreach($found as $val){
preg_match("/([а-я.]+)([А-Я]+)/", $val[0], $matches);
//print_r($matches);
$str_file=str_replace($matches['0'],$matches['1']."\r\n \r\n".$matches['2'],$str_file);
}
}
// абзац для конструкции аааАаа
if (preg_match_all('/[а-я]{3,}[А-Я]{1}/u', $str_file, $found, PREG_SET_ORDER)) {
foreach($found as $val){
preg_match("/([а-я]{3,})([А-Я]{1})/u", $val[0], $matches);
$str_file=str_replace($matches['0'],$matches['1']."\r\n \r\n".$matches['2'],$str_file);
}
}
// абзац для конструкции ааа2
if (preg_match_all('/[а-я][0-9]/u', $str_file, $found, PREG_SET_ORDER)) {
foreach($found as $val){
preg_match("/([а-я])([0-9])/u", $val[0], $matches);
$str_file=str_replace($matches['0'],$matches['1']."\r\n \r\n".$matches['2'],$str_file);
}
}
//echo $nazvanie.'<hr/>'.$str_file.'';
///////////////////////////////////////////////////////////////
// перевод строки меняем на двойной?
$str_file=str_replace(PHP_EOL,"\r\n \r\n",$str_file);
// Создаем массив данных новой записи
$post_data = array(
'post_title' => trim($nazvanie),
'post_content' => trim($str_file),
'post_status' => 'publish',
'post_category' => array($_POST['categ']),
'post_type' => 'post',
);
// print_r($post_data); die();
// Вставляем запись в базу данных
$post_id = wp_insert_post( $post_data );
echo "Добавлено - $post_id";
if($_POST['image']!==''){
set_post_thumbnail($post_id, $_POST['image']);
echo' - Миниатюру добавили';
}
$i++;
//die();
}
}
}
echo"<hr/> Добавлено $i записей";
}
?><hr/><hr/><hr/><b> <a href="">Начать заново</a></b>
<br/><br/><br/>
<p style="font-size:10px;">2022 (c) <a href="https://wx1.ru/" target="blank" style="color:black;text-decoration:none;">Wx1000</a></p>