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