_override_custom_logo_theme_mod

函数
_override_custom_logo_theme_mod ( $custom_logo )
参数
  • (string) $custom_logo The custom logo set by a theme.
    Required:
返回值
  • (string) The site logo if set.
定义位置
相关方法
_delete_custom_logo_on_remove_site_logo_sync_custom_logo_to_site_logothe_custom_logoget_custom_logo_custom_logo_header_styles
引入
-
弃用
-

_override_custom_logo_theme_mod: 这个函数是用来覆盖WordPress中的自定义标志主题模块的。它需要两个参数,$value和$option。$value是自定义徽标的新值,而$option是选项名称: 当你想以编程方式为一个主题设置一个新的标志时,这个函数经常被使用。

如果设置了该选项,则用网站标志覆盖自定义标志。

function _override_custom_logo_theme_mod( $custom_logo ) {
	$site_logo = get_option( 'site_logo' );
	return false === $site_logo ? $custom_logo : $site_logo;
}

常见问题

FAQs
查看更多 >