SimplePie::set_favicon_handler()publicWP 1.0

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() code WP 6.5.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;
}