SimplePie::set_favicon_handler()
Deprecated. It is no longer supported and can be removed in future releases. Use
your own favicon handling
instead.Set the favicon handler
Method of the class: SimplePie{}
No Hooks.
Return
null
. Nothing (null).
Usage
$SimplePie = new SimplePie(); $SimplePie->set_favicon_handler( $page, $qs );
- $page **
- -
Default: false - $qs **
- -
Default: 'i'
Changelog
Deprecated | Use your own favicon handling instead |
SimplePie::set_favicon_handler() SimplePie::set favicon handler code WP 6.6.2
public function set_favicon_handler($page = false, $qs = 'i') { $level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING; trigger_error('Favicon handling has been removed, please use your own handling', $level); return false; }