Pomagalnik

Pomagalnik

Strokovnjak za digitalne medije.

Zadnje objave v WordPressu

Get archives

KODA:
<ul>
<?php wp_get_archives('title_li=&type=postbypost&limit=3'); ?>
</ul>


Get posts

KODA:
<ul>
<?php
$myposts = get_posts('numberposts=3&order=DESC');
foreach($myposts as $post) :
setup_postdata($post);
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>


WP query

KODA:
<ul>
<?php $my_query = new WP_Query('showposts=3');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>