在主页上的精选帖子的Wordpress滑块

时间:2013-01-31 12:57:48

标签: php jquery wordpress jquery-plugins wordpress-plugin

这就是我要做的 - 来源 - http://www.torontostandard.com/

Scrollable

是否有适合这种外观的插件?

使用这段时间代码来获取带有精选标记的帖子。

然而,如果我可以使用jquery循环,但无法找到任何关于此的教程会更好:(

<?php query_posts('tag=featured'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_post_thumbnail('thumbnail'); ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>  
<?php endwhile; endif; ?>

PS-为这个插件搜索了很多但无法找到任何

1 个答案:

答案 0 :(得分:0)

我总是发现,如果我想从网站上窃取jquery插件,我只需查看源代码并google js文件:

<script type="text/javascript" src="/js/libraries/jquery.scrollTo-min.js"></script>

但是我总是建立自己的,但那就是我。