is_favicon

函数
is_favicon ( No parameters )
返回值
  • (bool) Whether the query is for the favicon.ico file.
定义位置
相关方法
do_faviconis_admindid_actionhas_actionis_info
引入
5.4.0
弃用
-

is_favicon: 如果当前页面是网站的favicon,该函数返回true。favicon是出现在浏览器标签或地址栏中网站名称旁边的小图标。

查询的是favicon.ico文件吗?

function is_favicon() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1.0' );
		return false;
	}

	return $wp_query->is_favicon();
}

常见问题

FAQs
查看更多 >