I have already done the setup on the “Limit items”(more options tab) but this only limits the number of posts that i grab for each pipe.I want to limit the number of posts from all my published pipes.For example: Now i have 28 pipes(1 for each category) and i want every time to grab 1 post (the most recently) from all my pipes that i have set as published.Take a look on this hook that i had add in functions.php, in order to find a solution with another plugin.
function fwp_first_item( $data, $fwp )
{
static $first = true;
if ( ! $first ) return null;
$first = false;
return $data;
}
add_filter( ‘syndicated_post’, ‘fwp_first_item’, 10, 2 );
Here is an example of a pipe>> https://www.mediafire.com/download/d72a8cbg8zarfxi/rss-issue-video.zip The problem with the videos is the same with all my pipes (different rss feeds).Thank you again for helping me to solve this.