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