| Server IP : 82.208.35.60 / Your IP : 216.73.217.116 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/d2m/sofident_cz/wp-content/themes/sofident/template-parts/ |
Upload File : |
<?php
/**
* Template part for displaying posts
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Sofident
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-push-4">
<?php
if (is_single()) :
the_title('<h1 class="entry-title">', '</h1>');
else :
the_title('<h2 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h2>');
endif;
the_content(sprintf(
/* translators: %s: Name of current post. */
wp_kses(__('Continue reading %s <span class="meta-nav">→</span>', 'sofident'), array('span' => array('class' => array()))), the_title('<span class="screen-reader-text">"', '"</span>', false)
));
?>
</div>
<div class="col-xs-12 col-sm-4 col-sm-pull-8">
<?php
if (is_single()) :
the_post_thumbnail('full');
else :
the_post_thumbnail('thumbnail');
endif;
?>
</div>
</div>
</article><!-- #post-## -->