Latest notes wordpress on a separate page
-
How do you put the last tapes on a separate page in wordpress?
-
This code will remove the last five posts.
<?php $args = array( 'posts_per_page' => 5 ); $lastposts = get_posts( $args );
foreach( $lastposts as $post ){
setup_postdata($post); // устанавливаем данные
?><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_content(); ?> <?php
}
wp_reset_postdata(); // сброс
?>
Full documentation for get_posts(); Here. http://wp-kama.ru/function/get_posts