ACC SHELL
<?php
/**
* The template for displaying supfooter
*
* @package WordPress
* @subpackage Laboserv2020
* @since Laboserv2020 1.0
*/
?>
<div class="textarea">
<div class="content">
<section class="news-posts">
<h1>Aktuality</h1>
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => 5,
'category__not_in' => array( 14 )
);
// Create the new query
$news_posts = new WP_Query( $args );
// vypis produktu
while ( $news_posts->have_posts() )
{
$news_posts->the_post();
global $post;
$postID = $post->ID;
$categories = get_the_category( $postID );
foreach( $categories as $cat )
{
$category_name = $cat->name;
$category_slug = $cat->slug;
$category_ID = $cat->cat_ID;
$category_link = get_category_link( $cat );
}
echo '<article class="news-post">';
if ( ! strcmp( $category_slug, 'poradna' ) )
{
if ( has_post_thumbnail( $postID ) )
{
echo get_the_post_thumbnail();
}
}
echo '<h1><a href="'.get_the_permalink( $postID ).'">'.get_the_title( $postID ).'</a></h1>';
echo '<p class="excerpt">'.get_the_excerpt( $postID ).'</p>';
//$categories = get_the_category( $postID );
//print_r( $categories );
echo '<footer><span class="date">'.get_the_date( 'j. F Y', $postID ).'</span> •';
echo ' <a href="'.$category_link.'" class="category">'.strtolower( $category_name ).'</a>';
echo '</footer>';
echo '</article>';
}
?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>archiv-aktualit" class="more-news">archiv aktualit</a>
</section><!-- .news-posts END -->
<section class="about-company">
<div class="text">
<?php
if ( is_active_sidebar( 'about-company' ) )
{
dynamic_sidebar( 'about-company' );
}
?>
</div><!-- .text END -->
<h1>Kontakt</h1>
<!--<h2>Kde nás najdete?</h2>-->
<div class="left-side">
<img src="<?php echo get_template_directory_uri(); ?>/images/fotografie-sidla.jpg" alt="fotografie sídla Laboserv s.r.o." class="photo" />
<span class="iso">
<img src="<?php echo get_template_directory_uri(); ?>/images/iso-icon.png" alt="ISO ikona" />
<p>ISO 9001 a 14001<br/>
certifikovaná<br/>
společnost</p>
</span>
</div><!-- .left-side END -->
<div class="right-side">
<article class="address">
<?php
if ( is_active_sidebar( 'company-address' ) )
{
dynamic_sidebar( 'company-address' );
}
?>
</article>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>pro-obchodni-partnery/kontakt/" class="link-button">identifikace společnosti</a><br/>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>o-spolecnosti/volna-mista/" class="link-button">pracovní příležitost</a>
</div><!-- .right-side END -->
</section>
</div><!-- .content END -->
</div><!-- #textarea END -->
ACC SHELL 2018