| Server IP : 14.225.204.176 / Your IP : 216.73.216.252 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/langngon.com/wp-content/themes/langngon/ |
Upload File : |
<?php
/*
YARPP Template: News
Description: This template returns the related posts.
Author: Minh.tran
*/
?>
<?php if (have_posts()) { ?>
<section class="block-page">
<div class="container">
<div class="section-news ">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h4 class="highlight">Tin tức liên quan</h4>
<?php while (have_posts()) : the_post();
?>
<div class="row item">
<div class="col-md-4">
<div>
<a href="<?php the_permalink(); ?>">
<?php
if ( has_post_thumbnail() ) {
echo "<img class=\"img-responsive\" src=\"" . get_the_post_thumbnail_url(get_the_ID(), '470x290') . "\" alt=\"" . get_the_title() . "\">";
}
?>
</a>
</div>
</div>
<div class="col-md-8 news-content">
<div class="uppercase"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
<?php the_excerpt(); ?>
<a class="readmore" href="<?php the_permalink(); ?>">Xem thêm...</a>
</div>
</div>
<?php
echo '<!-- ('.get_the_score() . ')-->';
endwhile;
?>
</div>
</div>
</div>
</div>
</section>
<?php } ?>