| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 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
/**
* Display category for the theme.
*
* @copyright ZiniMedia 2016
* @version Release: 1.0
* @package langngon
* @author ZiniMedia-BM
*/
?>
<?php get_header(); ?>
<div class="parallax-sub-news">
<div class="parallax-subpage"></div>
</div>
<section class="block-page">
<div class="container">
<div class="section-news ">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h3 class="space30">Tin tức sự kiện</h3>
<?php
$args = array(
'post_type'=> 'post',
'orderby' => 'date',
'order' => 'DESC',
'post_status' => 'publish',
);
$loop = new WP_Query($args);
if ($loop->have_posts()) {
while ($loop->have_posts()) : $loop->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
endwhile;
}
?>
<?php zinimedia_pagination(); ?>
<?php wp_reset_query(); ?>
</div>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>