0

在我当前的 WP 主题 ( @http: //lillypillyps.com.au ) 主页上有一个“引用”部分,我想用各种“循环”横幅替换它。

与此站点标题上的推荐书类似,我希望它在页面加载时显示随机推荐书并循环浏览所有其他页面。

我有一个名为“推荐”的帖子,我希望它从中提取标题和内容。

我通过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 页面中提取...

请帮忙!

4

1 回答 1

0
<?php

$array = get_posts(array('category' => 1));
shuffle($array);

foreach ($array as $post) {
    //Blah blah javascript
}


?>
于 2013-03-25T05:37:57.813 回答