| 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/harmoniegolfpark.com/wp-content/themes/harmonie/ |
Upload File : |
<?php
// Varialbe
$post_exists = array();
?>
<?php get_header(); ?>
<section class="main">
<div class="container">
<div class="row bar-top">
<div class="col-md-8 col-sm-8">
<ul class="breadcrumb">
<li><?php echo get_bloginfo(); ?></li>
</ul>
</div>
<div class="col-md-4 col-sm-4 hidden-sm">
<?php get_template_part("templates/entry/date"); ?>
</div>
</div><!-- //.bar-top -->
<div class="row main404">
<div class="col-xs-12">
<figure><img src="<?php echo PART_IMAGE_THEME; ?>/404.png" alt="demo"></figure>
<p class="meassage text-center">Nội dung bạn đang cần hiện tại không khả dụng. Bạn có thể trở về <a href="<?php echo get_site_url(); ?>">Trang Chủ</a><br class="hidden-sm"> hoặc xem thêm các bài viết mới nhất bên dưới.</p>
</div>
</div>
<div class="row inner-page">
<div id="main-content" class="col-xs-12 col-main-content">
<div class="box-common page404">
<div class="head__title">
<h3>Tin tức mới nhất</h3>
</div>
<div class="box-common-content">
<ul class="list-news list-news-ajax">
<?php
$args = array(
'posts_per_page'=> 5,
'post_status' => 'publish',
'order' => 'DESC',
'orderby' => 'date',
'post_type' => array('post'),
);
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
while ( $loop->have_posts() ) {
$loop->the_post();
array_push($post_exists, get_the_ID());
get_template_part("templates/home-section-3-5");
}
}
wp_reset_query();
?>
</ul>
<div class="box-common-content">
<?php
// echo do_shortcode('[ajax_load_more id="417987588" button_label="BẤM ĐỂ XEM THÊM" images_loaded="false" max_pages="3" transition_container="false" css_classes="list-news" post_type="post" post__not_in="' . implode($post_exists, ',') . '"]');
?>
</div>
<p class="text-center pa15"><a id="archive-more-post" href="javascript:;" class="btn btn-purple font-18px"><i class="fa fa-chevron-circle-down"></i>Bấm để xem thêm</a></p>
</div>
</div>
</div>
<!-- /.main-content -->
<?php get_sidebar(); ?>
</div>
<input type="hidden" id="post_not_in" value="[<?php echo implode(",", $post_exists) ?>]"/>
<input type="hidden" id="category" value=""/>
<input type="hidden" id="posts_per_page" value="5"/>
<input type="hidden" id="offset" value="5"/>
<input type="hidden" id="type" value="archive"/>
<input type="hidden" id="tag" value=""/>
<input type="hidden" id="author" value=""/>
</div>
</section><!-- //.primary -->
<?php get_footer(); ?>