Code hiển thị bài viết cập nhập mới nhất lên đầu
Sau đây netweb.vn sẽ hướng dẫn các bạn code bài viết tự động update theo ngày cập nhập mới nhất, các bạn cứ update bài viết là nó tự up bài viết lên đầu nhé! chúc các bạn thành công!
Nội dung
Code hiển thị ngày cập nhập mới nhất trên website wordpress
<div class="location">Ngày đăng: <i><?php the_time('d/m/Y'); ?></i>, Update: <?php the_modified_time('d/m/Y'); ?> Vào lúc: <?php the_modified_time(); ?> </div>
Code file category hiển thị bài viết ngày cập nhập mới nhất netweb đang áp dụng
<h1>Chuyên mục: <?php echo get_cat_name(get_query_var('cat'));?></h1> <?php $the_press = new WP_Query(array('post_type' => 'post','posts_per_page' => 9,'cat' => get_query_var('cat'),'orderby' => 'modified','paged'=> get_query_var('paged') )); // The Loop while ($the_press->have_posts()) : $the_press->the_post(); ?> <div class="post"> <div class="post-image"> <a href="<?php echo the_permalink(); ?>" title="<?php the_title(); ?>"> <?php the_post_thumbnail(); ?> </a> </div> <div class="post-info"> <a href="<?php echo the_permalink(); ?>" title="<?php the_title(); ?>"><h3><?php the_title(); ?></h3></a> <div class="location">Ngày đăng: <i><?php the_time('d/m/Y'); ?></i>, Update: <?php the_modified_time('d/m/Y'); ?> Vào lúc: <?php the_modified_time(); ?> </div> <p><?php the_excerpt(); ?> </p> </div> </div> <?php endwhile; ?> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(array('query'=> $the_press));} ?> <?php wp_reset_postdata();?>
Bình luận trên facebook netweb.vn