add_action( 'wp_enqueue_scripts', 'custom_scripts' );
function custom_scripts(){
if( is_page( $id ) ) { // тут ID, slug или заголовок страницы
wp_enqueue_style( 'custom', get_template_directory_uri() . '/css/mysite.css');
}
}
/**
* Добавляет условие WHERE в запрос Wp_Query.
*
* @param $where
*
* @return string
*/
function modify_posts_where( $where ) {
return $where . ' AND ID > 350';
}
// Добавляем условие
add_filter( 'posts_where', 'modify_posts_where' );
// Делаем запрос
$posts = new WP_Query( [
'post_type' => 'post',
'posts_per_page' => - 1,
// и другие нужные параметры
] );
// Удаляем условие, чтобы другие вызовы WP_Query() не затрагивать
remove_filter( 'posts_where', 'modify_posts_where' );
$str ='<tr><td>143</td><td><!--noindex-->Норвегия<!--/noindex--></td><td>Норвежская крона</td><td><!--noindex-->NOK<!--/noindex--></td><td><!--noindex-->578<!--/noindex--></td><td>1</td><td>8.05</td></tr>
<tr><td>144</td><td><!--noindex-->Объединенные Арабские Эмираты (ОАЭ)<!--/noindex--></td><td>Дирхам (ОАЭ)</td><td><!--noindex-->AED<!--/noindex--></td><td><!--noindex-->784<!--/noindex--></td><td>1</td><td>18.27</td></tr>
<tr><td>145</td><td><!--noindex-->Оман<!--/noindex--></td><td>Оманский риал</td><td><!--noindex-->OMR<!--/noindex--></td><td><!--noindex-->512<!--/noindex--></td><td>1</td><td>174.29</td></tr>';
preg_match('/<tr.*?>(Норвегия)(.*?)<\/tr>/', $str, $found);
var_dump($found);
<?php
$happyday = "09.01.1995";
$happyday = strtotime($happyday);
$happyday = strtotime('-3years',$happyday);
echo date('Y-m-d', $happyday);
function attachment_redirect() {
global $post;
if ( is_attachment() && ( $post->post_parent == 0 ) ) {
wp_redirect( get_permalink( $post->post_parent ), 301 );
exit();
}
}
add_action( 'template_redirect', 'attachment_redirect' );
<div class="main-content">
<div class="title-image">
<h2>Заголовок</р2>
<img src="http:..." alt="" width="" height="" />
<div>
<div class="title-image">
<h2>Заголовок</р2>
<img src="http:..." alt="" width="" height="" />
<div>
<div>
<style>
.main-content {
display:flex;
flex-flow: row wrap
}
.title-image{
display: inherit;
flex-flow: column;
}
<style>