After 8 hours of trying I found out. This plugin use functions.php for filtering the feed items when you want to filter thru shortcode… The thing is that if you want to have search result only on pages you will not be able to see the feed items or any feed with a shortcode like this [wp-rss-aggregator filter=”monero”]. Please can you guys provide a function filter that can only display pages in the search and also working to filter the aggregator with shortcode like this [wp-rss-aggregator filter=”monero”]?
This is the function that works but this particular one search thru entire website and I want to search only thru pages and also to let me have the aggregator in place
function filter_search($query) {
if ($query->is_search) {
$query->set(‘post_type’, array(‘post’, ‘page’));
};
return $query;
};