• Resolved tevil

    (@tevil)


    Is there a way to randomize the article sources better? I have about 10 feed sources and the limit set to 8 and every time the page refreshes it refreshes the articles but it gives me 8 articles from the same source. Is there a way to get it to pick 1 article from each feed source? Im using the free version right now. Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor contactashish13

    (@rozroz)

    @tevil this is something you will have to do with a piece of code added to the theme’s functions.php. You can use the below skeleton snippet to develop your own logic:

    
    add_filter( 'feedzy_get_feed_url', 'feedzy_get_feed_url', 10, 1 );
    function feedzy_get_feed_url( $url ) {
    	// randomize the urls
    	return $url;
    }
    
    Thread Starter tevil

    (@tevil)

    thanks but way beyond my scope of knowledge lol

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘randomize article sources?’ is closed to new replies.