WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
Line | Code |
---|---|
1029 | * |
1030 | * The dynamic portion of the hook name, `$name`, refers to the key name |
1031 | * of the modification array. For example, 'header_textcolor', 'header_image', |
1032 | * and so on depending on the theme options. |
1033 | * |
1034 | * @since 2.2.0 |
1035 | * |
1036 | * @param mixed $current_mod The value of the active theme modification. |
1037 | */ |
1038 | return apply_filters( "theme_mod_{$name}", $mods[ $name ] ); |
1039 | } |
1040 |
|
1041 | if ( is_string( $default_value ) ) { |
1042 | // Only run the replacement if an sprintf() string format pattern was found. |
1043 | if ( preg_match( '#(?<!%)%(?:\d+\$?)?s#', $default_value ) ) { |
1044 | // Remove a single trailing percent sign. |
1045 | $default_value = preg_replace( '#(?<!%)%$#', '', $default_value ); |
1046 | $default_value = sprintf( $default_value, get_template_directory_uri(), get_stylesheet_directory_uri() ); |
1047 | } |
1048 | } |
1049 |
|
1050 | /** This filter is documented in wp-includes/theme.php */ |
1051 | return apply_filters( "theme_mod_{$name}", $default_value ); |
1052 | } |
1053 |
|
1054 | /** |
1055 | * Updates theme modification value for the active theme. |
1056 | * |
1057 | * @since 2.1.0 |
1058 | * @since 5.6.0 A return value was added. |
1059 | * |
1060 | * @param string $name Theme modification name. |