Делаю:
<?php if (mobile_detect()) {} else {
if( is_front_page() ) echo '<div class="news-arrow"><img src="/wp-content/themes/theme/images/news-arrow.png"></div>
<div class="news">
<p-news><a href="/новости" style="text-decoration: none;">Новости</a></p-news>
</div>'; }
?>
Определяет что с мобильного и что на морде находимся. А вот дальше надо сделать запрос и вывести список новостей. Нашел следующий код:
<ul>
<?php
$args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish', 'offset' => 1);
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><p><?php the_excerpt(); ?></p></li>
<?php endforeach; ?>
</ul>
Добавляю его в соответствующее место и ничего не происходит. сайт не грузится. Помогите, пожалуйста!