1

好的,我是 wordpress 设计的新手,我发现 wordpress codex 对于像我这样的初学者来说太先进了。

好吧,我的博客主页显示出来15 posts了,我已经成功实现了一个特色滑块,它显示了最新的 5 篇文章。现在,我想previous (5) post在 jquery 轮播中显示,但我什至不知道该怎么做。关于如何处理这些家伙的任何帮助?我在 wordpress.stackoverflow 区域发布了这个问题,但没有回复。我花了很长时间才实现这个:(

4

1 回答 1

0

如果插件正在使用 WP 功能,您可以尝试更改“偏移量”参数。请注意您可以根据需要调整的偏移参数。

<ul>
<?php
global $post;
$args = array( 'numberposts' => 5, 'offset'=> 5, 'category' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :  setup_postdata($post); ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
于 2012-08-07T16:39:51.203 回答