diff options
| author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2007-03-12 23:03:30 +0000 |
|---|---|---|
| committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2007-03-12 23:03:30 +0000 |
| commit | 0d4bfdbf8c17706b57e92838d1599cb9e82c893b (patch) | |
| tree | f02f84d4c598373d7e5921ea3d3e66fd50850d24 /wp-includes/theme.php | |
| parent | bed8532fd2d9cc526a74f4fc4214887b37cf6e71 (diff) | |
| download | wordpress-mu-0d4bfdbf8c17706b57e92838d1599cb9e82c893b.tar.gz wordpress-mu-0d4bfdbf8c17706b57e92838d1599cb9e82c893b.tar.xz wordpress-mu-0d4bfdbf8c17706b57e92838d1599cb9e82c893b.zip | |
WP Merge to 5028
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@915 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/theme.php')
| -rw-r--r-- | wp-includes/theme.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-includes/theme.php b/wp-includes/theme.php index 2f2c1fb..7e45c54 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -441,9 +441,9 @@ function get_theme_mod($name, $default = false) { $mods = get_option("mods_$theme"); if ( isset($mods[$name]) ) - return $mods[$name]; + return apply_filters( "theme_mod_$name", $mods[$name] ); - return sprintf($default, get_template_directory_uri()); + return apply_filters( "theme_mod_$name", sprintf($default, get_template_directory_uri()) ); } function set_theme_mod($name, $value) { |
