block_core_social_link_get_name

函数
block_core_social_link_get_name ( $service )
参数
  • (string) $service The service icon.
    Required:
返回值
  • (string) Brand label.
定义位置
相关方法
block_core_social_link_get_iconblock_core_social_link_servicesrender_block_core_social_linkregister_block_core_social_linkblock_core_gallery_render
引入
-
弃用
-

block_core_social_link_get_name: 此函数用于获取社交链接的名称。它返回社交网络的名称。

返回社交链接的品牌名称。

function block_core_social_link_get_name( $service ) {
	$services = block_core_social_link_services();
	if ( isset( $services[ $service ] ) && isset( $services[ $service ]['name'] ) ) {
		return $services[ $service ]['name'];
	}

	return $services['share']['name'];
}

常见问题

FAQs
查看更多 >