<?php
function
latest_post() {
$args
=
array
(
'posts_per_page'
=> 3,
'offset'
=> 0,
'orderby'
=>
'post_date'
,
'order'
=>
'DESC'
,
'post_type'
=>
'post'
,
'post_status'
=>
'publish'
);
$query
=
new
WP_Query(
$args
);
if
(
$query
->have_posts()) :
while
(
$query
->have_posts()) :
$query
->the_post();
?>
<div
class
=
"latest-posts"
>
<h3><a href=
"<?php the_permalink(); ?>"
><?php the_title(); ?></a></h3>
<p><?php the_excerpt(); ?></p>
<div
class
=
"readmore"
><a href=
"<?php the_permalink(); ?>"
>Read more »</a></div>
</div>
<?php
endwhile
;
endif
;
}
add_shortcode(
'lastest-post'
,
'latest_post'
);
?>