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
924            *
925            * The dynamic portion of the hook name, `$name`, refers to the key name
926            * of the modification array. For example, 'header_textcolor', 'header_image',
927            * and so on depending on the theme options.
928            *
929            * @since 2.2.0
930            *
931            * @param string $current_mod The value of the current theme modification.
932            */
933           return apply_filters( "theme_mod_{$name}", $mods[ $name ] );
934      }
935
936      if ( is_string( $default ) ) {
937           // Only run the replacement if an sprintf() string format pattern was found.
938           if ( preg_match( '#(?<!%)%(?:\d+\$?)?s#', $default ) ) {
939                $default = sprintf( $default, get_template_directory_uri(), get_stylesheet_directory_uri() );
940           }
941      }
942
943      /** This filter is documented in wp-includes/theme.php */
944      return apply_filters( "theme_mod_{$name}", $default );
945 }
946
947 /**
948  * Update theme modification value for the current theme.
949  *
950  * @since 2.1.0
951  *
952  * @param string $name  Theme modification name.
953  * @param mixed  $value Theme modification value.