get_theme_mods

Definition:
function get_theme_mods() {}

Retrieve all theme modifications.

Return values

returns:Theme modifications.

Source code

function get_theme_mods() {

	$theme_slug = get_option( 'stylesheet' );

	if ( false === ( $mods = get_option( "theme_mods_$theme_slug" ) ) ) {

		$theme_name = get_current_theme();

		$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" );

		}

	}

	return $mods;

}

9699

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: