我目前的WP主题(@ http://lillypillyps.com.au)主页上有一个“引用”部分,我想用各种各样的“骑行”横幅取代。
与this site's header上的推荐类似,我希望它在页面加载时显示随机推荐,并循环显示所有其他推荐。
我有一个名为“推荐书”的帖子,我希望它能为此提取标题和内容。
我通过http://wordpress.org/support/topic/show-random-posts-custom-fields?replies=10看到了接近这个的东西,但不是我想要的。我希望有一个插件,但因为我不知道该怎么称呼它,我找不到任何东西,甚至远程关闭。
也许,我可以使用此代码的变体:
<script type="text/javascript">
$(document).ready(function() {
$('#escape').fadeIn(3000).delay(2000).fadeOut(3000);
$("#quotes").load("quotes.html",function() {
$quotes = $("p.quotes");
var q = Math.floor( Math.random() * $quotes.length );
$quotes.eq(q).addClass("next"); // set the next to fade
f();
})
});
function f() {
$(".next").fadeIn(3000).delay(2000).fadeOut(3000, function() {
// fadeout ended, we prepare the next one
$(this).removeClass("next");
$(this).next("p.quotes").addClass("next");
if($(".next").length==0) $("p.quotes:first").addClass("next");
f();
});
}
</script>
但是使用php脚本从指定的类别而不是从平面的html页面中提取......
请帮忙!
答案 0 :(得分:0)
<?php
$array = get_posts(array('category' => 1));
shuffle($array);
foreach ($array as $post) {
//Blah blah javascript
}
?>