Deprecated Deprecated
This method has been deprecated. Use your own favicon handling instead
Summery Summery
Get the favicon for the current feed
Syntax Syntax
Source Source
File: wp-includes/class-simplepie.php
* This is well-suited for {@link http://php.net/for for()} loops with * {@see get_item()} * * @param int $max Maximum value to return. 0 for no limit * @return int Number of items in the feed */ public function get_item_quantity($max = 0) { $max = (int) $max; $qty = count($this->get_items()); if ($max === 0) {