Google Blog Search
$url1="http://www.google.com/blogsearch_feeds?hl=en&client=z2&q=";
$url2="&ie=utf-8&num=10&output=rss";
$title = get_the_title();
$loweredTitle = strtolower($title);
$moddedtitle= str_replace(" ", "+", $loweredTitle);
$url=$url1.$moddedtitle.$url2;
feedList(array("rss_feed_url"=>$url,
"num_items"=>10,
"show_description"=>true,
"random"=>false,
"sort"=>"asc",
"new_window"=>false,
"show_date"=>true
)
);
?>
Google News Search
$url1="http://news.google.com/news?pz=1&ned=us&hl=en&q=";
$url2="&ie=utf-8&num=10&output=rss";
$title = get_the_title();
$loweredTitle = strtolower($title);
$moddedtitle= str_replace(" ", "+", $loweredTitle);
$url=$url1.$moddedtitle.$url2;
feedList(array("rss_feed_url"=>$url,
“num_items”=>10,
“show_description”=>true,
“random”=>false,
“sort”=>”asc”,
“new_window”=>false,
“show_date”=>true
)
);
?>
Yahoo Showthread Search
$url1="http://search.yahooapis.com/WebSearchService/rss/webSearch.xml?appid=yahoosearchwebrss&query=showthread+%22";
$title = get_the_title();
$loweredTitle = strtolower($title);
$moddedtitle= str_replace(" ", "+", $loweredTitle);
$url=$url1.$moddedtitle."%22";
feedList(array("rss_feed_url"=>$url,
“num_items”=>10,
“show_description”=>true,
“random”=>false,
“sort”=>”asc”,
“new_window”=>false,
“show_date”=>true
)
);
?>
Yahoo Video Search
$url1="http://search.yahooapis.com/VideoSearchService/rss/videoSearch.xml?appid=ysearchblog&format=mpeg&query=%22";
$title = get_the_title();
$loweredTitle = strtolower($title);
$moddedtitle= str_replace(" ", "+", $loweredTitle);
$url=$url1.$moddedtitle."%22";
feedList(array("rss_feed_url"=>$url,
“num_items”=>10,
“show_description”=>true,
“random”=>false,
“sort”=>”asc”,
“new_window”=>false,
“show_date”=>true
)
);
?>
Yahoo Image Search
$url1="http://search.yahooapis.com/ImageSearchService/rss/imageSearch.xml?appid=yahoosearchimagerss&query=%22";
$title = get_the_title();
$loweredTitle = strtolower($title);
$moddedtitle= str_replace(" ", "+", $loweredTitle);
$url=$url1.$moddedtitle."%22";
feedList(array("rss_feed_url"=>$url,
“num_items”=>10,
“show_description”=>true,
“random”=>false,
“sort”=>”asc”,
“new_window”=>false,
“show_date”=>true
)
);
?>

0 responses so far ↓
There are no comments yet...Kick things off by filling out the form below.
You must log in to post a comment.