• Resolved staipa

    (@staipa)


    Hello, it is possible to fetch for example 30 post but show only one random post?
    It could be useful.
    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Yes. Random post uncategorized. Even page title could be named “Random”

    Thread Starter staipa

    (@staipa)

    Rando post it is “fetch n posts – show n post randoomicaly” i still searcing a “fetch n posts – show ONE post randoomicaly”

    Plugin Author Travis

    (@tjtaylor)

    This is not currently possible, but we’ve noted your request for a potential future version.

    Plugin Author Travis

    (@tjtaylor)

    Best you could do is hide all of the items with CSS except for the first one. You would still be loading all of the RSS items in the background.

    li.wp_rss_retriever_item {
    display: none;
    }
    
    li.wp_rss_retriever_item:first-child {
    display: block;
    }
    
    Thread Starter staipa

    (@staipa)

    Thank you for suggestion

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Random post from more then one post’ is closed to new replies.