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