remove_theme_mod()
remove_theme_mod( string $name ) 从当前主题列表中删除主题修改名称。Remov…
remove_theme_mod( string $name )
从当前主题列表中删除主题修改名称。
Remove theme modification name from current theme list.
目录锚点:#说明#参数#返回#源码
说明(Description)
如果移除名称也会移除所有元素,则会移除整个选项。
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$name | (string) | 必需 | 主题修改名称。 |
返回(Return)
无返回值
源码(Source)
/** * Remove theme modification name from current theme list. * * If removing the name also removes all elements, then the entire option will * be removed. * * @since 2.1.0 * * @param string $name Theme modification name. */ function remove_theme_mod( $name ) { $mods = get_theme_mods(); if ( ! isset( $mods[ $name ] ) ) return; unset( $mods[ $name ] ); if ( empty( $mods ) ) { remove_theme_mods(); return; } $theme = get_option( 'stylesheet' ); update_option( "theme_mods_$theme", $mods ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.1.0 | wp-includes/theme.php:990 | 5 | 4 |
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!