2

我只需要在我的 Wordpress 首页上显示大约 300 个帖子中的 1 个随机帖子。当我按刷新时,有时同一帖子会在其他刷新后出现两次或很快出现。我可以实现类似 iTunes 随机播放模式的功能吗?我现在正在使用这段代码:

<?php
$args = array( 'numberposts' => 1, 'orderby' => 'rand' );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : 
?>
<?php the_title(); ?>
<?php endforeach; ?>
4

1 回答 1

3

这只是一个概念证明,但应该让您走上正确的道路。重要笔记:

  • 必须在任何 HTML 输出发生之前设置 cookie
  • 我将 cookie 用作数组,也许它可以是逗号分隔的列表并用于explode创建数组post__not_in
  • 该代码使用 PHP 5.3+ 匿名函数,如果运行较低版本,则必须更改它
  • 当没有设置 cookie 时,您必须进行微调,很可能,我们需要做的是在没有过滤器get_posts的情况下再次运行not_in
add_action( 'template_redirect', function()
{
    # Not the front page, bail out
    if( !is_front_page() || !is_home() )
        return;

    # Used in the_content
    global $mypost;

    # Set initial array and check cookie    
    $not_in = array();
    if( isset( $_COOKIE['shuffle_posts'] ) )
        $not_in = array_keys( $_COOKIE['shuffle_posts'] );

    # Get posts
    $args = array( 'numberposts' => 1, 'orderby' => 'rand', 'post__not_in' => $not_in );
    $rand_posts = get_posts( $args );

    # All posts shown, reset cookie
    if( !$rand_posts )
    {
        setcookie( 'shuffle_posts', '', time()-86400 );
        foreach($_COOKIE['shuffle_posts'] as $key => $value)
        {
            setcookie( 'shuffle_posts['.$key.']', '', time()-86400 );
            $id = 0;
        }
    }
    # Increment cookie
    else
    {
        setcookie( 'shuffle_posts['.$rand_posts[0]->ID.']', 'viewed', time()+86400 );
        $id = $rand_posts[0]->ID;
    }
    # Set the global, use at will (adjusting the 'bail out' above)
    $mypost = $id;
    return;

    ## DEBUG ONLY
    #  Debug Results - remove the return above
    echo 'current ID:' . $id . "<br />";
    if( !isset( $_COOKIE['shuffle_posts'] ) )
        echo 'no cookie set';
    else
        var_dump($_COOKIE['shuffle_posts']);

    die();
});

add_filter( 'the_content', function( $content )
{
    global $mypost;
    if( isset( $mypost ) )
        $content = '<h1>Random: ' . $mypost . '</h1>' . $content;
    return $content;
});

过滤器the_content只是一个例子。global $mypost可以在主题模板中的任何地方使用(调整后)bail out

如果与注册用户打交道,我们可以将值存储在user_meta.

于 2013-10-24T19:20:03.613 回答