// Открываем файл CSV и создаем массив данных
$file = fopen("file.csv", "r");
$data = array();
while(!feof($file)) {
$row = fgetcsv($file);
$data[] = $row;
}
fclose($file);
// Подключаемся к базе данных WordPress
global $wpdb;
// Указываем имя таблицы WordPress, в которую будем добавлять данные
$table_name = $wpdb->prefix . "my_table";
// Проходим по каждой строке данных и добавляем их в таблицу WordPress
foreach($data as $row) {
$wpdb->insert($table_name, array(
'column1' => $row[0],
'column2' => $row[1],
'column3' => $row[2],
// Добавляем столбцы, соответствующие данным из CSV-файла
));
}
$gorod = 'Moscow';
$query = "SELECT * FROM my WHERE gorod LIKE ?";
// get DB data using PDO
$stmt = $pdo->prepare($query);
$filter = "%$gorod%";
$stmt->execute([$filter]);
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
print_r($rows);
'post_name'=>'test',
) на наличие / существование страницы$page=get_page_by_path('test',OBJECT,'page');
$post_new = array(
'post_title' => 'Заголовок',
'post_name' => 'test',
'post_content' => 'Здесь должен быть контент',
'post_status' => 'publish',
'post_author' => 1,
'post_type' => 'page',
);
if(!$page){
$post_id=wp_insert_post(wp_slash($post_new));
}
add_shortcode( 'gorod', 'gorod_func' );
$gorod = 'Тюмень';
function gorod_func( $atts ){
return $GLOBALS['gorod'];
}
add_shortcode( 'gorod', 'gorod_func' );
$gorod = 'Тюмень';
function gorod_func( $atts ){
global $gorod;
return $gorod;
}
a:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="phno"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, textarea:focus, input[type="submit"]:focus, #comments:focus, select:focus, .toggle-nav button:focus, .search-box button:focus {
outline: 1px dotted #000;
border-bottom: 1px solid #000;
text-decoration: none !important;
}
Это корпоративный портал.