Files
doitinpoland.com/wp-content/themes/cyber/template-parts/content-search.php
2024-09-27 14:28:17 +02:00

56 lines
1.8 KiB
PHP

<?php
/**
* Template part for displaying archive posts
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package cyber
*/
?>
<!-- SEARCH QUERY -->
<div class="col-md-12 col-sm-12 col-xs-12">
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="cyber-single-blog">
<!-- BLOG THUMB -->
<?php if(has_post_thumbnail()){?>
<div class="cyber-blog-thumb ">
<a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail('cyber-blog-single'); ?> </a>
<div class="cyber-blog-meta-top">
<?php the_category();?>
</div>
</div>
<?php } ?>
<!-- BLOG CONTENT -->
<div class="em-blog-content-area ">
<div class="cyber-blog-meta-left">
<!-- <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ), get_the_author_meta( 'user_nicename' ) ); ?>"> <?php the_author(); ?></a>-->
<span><?php echo get_the_time(get_option('date_format')); ?></span>
<!-- <a href="<?php comments_link(); ?>">
<?php comments_number( esc_html__('0 Comments','cyber'), esc_html__('1 Comments','cyber'), esc_html__('% Comments','cyber') );?>
</a>-->
</div>
<!-- BLOG TITLE -->
<div class="blog-page-title ">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</div>
<!-- BLOG TITLE AND CONTENT -->
<div class="blog-inner">
<div class="blog-content">
<?
$content = get_the_content();
$content = do_shortcode($content);
$trimmed_content = wp_trim_words($content, 37, '');
?>
<p><?php echo esc_html($trimmed_content); ?></p>
</div>
</div>
</div>
</div>
</div> <!-- END SINGLE BLOG -->
</div><!-- #post-## -->