<?php
/*
Template Name: Страница проектов
*/
?>
<?php get_header(); ?>
<style>
.content-wrapper {width: 1200px;margin: 0 auto;}
.menu-tab.active {left: 145px;}
.number {right: 366px;}
@media only screen
and (min-width : 1600px) {
.menu-tab.active {left: 9px;}
}
</style>
<div class="conteiner_page">
<div class="main-heading">
<h1><?php the_title(); ?></h1>
</div>
<section>
<?php if (have_posts()): while (have_posts()): the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</section>
<div class="project_box">
<?php
// параметры по умолчанию
$my_projects = get_posts( array(
'numberposts' => 20,
'category' => 4,
'orderby' => 'date',
'order' => 'DESC',
'include' => array(),
'exclude' => array(),
'meta_key' => '',
'meta_value' =>'',
'post_type' => 'post',
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
) );
foreach( $my_projects as $post ){
setup_postdata( $post );
?>
<?php the_title() ?>
<div class="project_item">
<a href="<?php echo get_the_permalink(); ?>"><img src="<?php the_field('post_img'); ?>" alt=""></a>
</div>
<?php
}
wp_reset_postdata(); // сброс
?>
</div>
</div>
<?php get_footer(); ?>
$no = wp_nav_menu();
echo is_array($no) ? 'Массив' : 'Не массив';
<?php get_header(); ?>
в шаблоне на index.php <?php if ( is_product() ) : ?>
echo '<style>
button#go_to_constructor {display: none;}
</style>';
<?php endif; ?>