В пхп и бд на таком уровне не силен.
</script>
$_GET['lang']
через что вы передаете параметр? Могу вам предложить вариант просто просматривать ссылку на наличие: /en/ и передавать результат проверки в switch. $('.gif').gifplayer();
last_week_news = new WP_Query( array(
'date_query' => array(
array(
'after' => '1 week ago',
),
),
'posts_per_page' => 5,
));
$query = new WP_Query( $last_week_news );
add_action( 'init', 'true_register_post_type_init' ); // Использовать функцию только внутри хука init
function true_register_post_type_init() {
$labels = array(
'name' => 'Компании',
'singular_name' => 'Компанию', // админ панель Добавить->Функцию
'add_new' => 'Добавить компанию',
'add_new_item' => 'Добавить новую компанию', // заголовок тега <title>
'edit_item' => 'Редактировать компанию',
'new_item' => 'Новая компания',
'all_items' => 'Все компании',
'view_item' => 'Просмотр компании на сайте',
'search_items' => 'Искать компании',
'not_found' => 'Компаний не найдено.',
'not_found_in_trash' => 'В корзине нет компаний.',
'menu_name' => 'Компании' // ссылка в меню в админке
);
$args = array(
'labels' => $labels,
'public' => true,
'show_ui' => true, // показывать интерфейс в админке
'has_archive' => true,
'exclude_from_search' => true,
'menu_icon' => 'dashicons-groups', // иконка в меню
'menu_position' => 100, // порядок в меню
'supports' => array( 'title', 'editor', 'comments', 'author', 'thumbnail','custom-fields')
);
register_post_type('company', $args);
}
'supports' => array( 'title', 'editor', 'comments', 'author', 'thumbnail','custom-fields')
if($k%5 == 0) {
}
<main id="main" class="site-main" role="main">
<?php $k = 0;
if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<div class="posts-loop">
<?php while ( have_posts() ) : the_post(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/' . $post_template );
?>
<?php endwhile; ?>
</div><!-- / .posts-loop -->
<div class="postnav">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</main><!-- #main -->
<?php if($k%5 == 0){ post_class( 'list-post grid_item' );} else {post_class( 'list-post grid_item' );} ?>
Здесь вся информация постов и т.д.
</article>