Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: theme_mod_{$name}

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
1017            *
1018            * The dynamic portion of the hook name, `$name`, refers to the key name
1019            * of the modification array. For example, 'header_textcolor', 'header_image',
1020            * and so on depending on the theme options.
1021            *
1022            * @since 2.2.0
1023            *
1024            * @param mixed $current_mod The value of the active theme modification.
1025            */
1026           return apply_filters( "theme_mod_{$name}", $mods[ $name ] );
1027      }
1028
1029      if ( is_string( $default_value ) ) {
1030           // Only run the replacement if an sprintf() string format pattern was found.
1031           if ( preg_match( '#(?<!%)%(?:\d+\$?)?s#', $default_value ) ) {
1032                // Remove a single trailing percent sign.
1033                $default_value = preg_replace( '#(?<!%)%$#', '', $default_value );
1034                $default_value = sprintf( $default_value, get_template_directory_uri(), get_stylesheet_directory_uri() );
1035           }
1036      }
1037
1038      /** This filter is documented in wp-includes/theme.php */
1039      return apply_filters( "theme_mod_{$name}", $default_value );
1040 }
1041
1042 /**
1043  * Updates theme modification value for the active theme.
1044  *
1045  * @since 2.1.0
1046  * @since 5.6.0 A return value was added.
1047  *
1048  * @param string $name  Theme modification name.