get_theme_mods

函数
get_theme_mods ( No parameters )
返回值
  • (array) Theme modifications.
定义位置
相关方法
get_theme_modset_theme_modget_theme_rootsget_themesget_theme_data
引入
3.1.0
弃用
-

get_theme_mods: 这个函数用来检索一个所有主题修改设置的数组。它返回一个修改设置数组,其中键是修改设置名称,值是修改设置值。

检索所有主题的修改。

function get_theme_mods() {
	$theme_slug = get_option( 'stylesheet' );
	$mods       = get_option( "theme_mods_$theme_slug" );

	if ( false === $mods ) {
		$theme_name = get_option( 'current_theme' );
		if ( false === $theme_name ) {
			$theme_name = wp_get_theme()->get( 'Name' );
		}

		$mods = get_option( "mods_$theme_name" ); // Deprecated location.
		if ( is_admin() && false !== $mods ) {
			update_option( "theme_mods_$theme_slug", $mods );
			delete_option( "mods_$theme_name" );
		}
	}

	if ( ! is_array( $mods ) ) {
		$mods = array();
	}

	return $mods;
}

常见问题

FAQs
查看更多 >