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                // Remove a single trailing percent sign.
1028                $default = preg_replace( '#(?<!%)%$#', '', $default );
1029                $default = sprintf( $default, get_template_directory_uri(), get_stylesheet_directory_uri() );
1030           }
1031      }
1032
1033      /** This filter is documented in wp-includes/theme.php */
1034      return apply_filters( "theme_mod_{$name}", $default );
1035 }
1036
1037 /**
1038  * Updates theme modification value for the current theme.
1039  *
1040  * @since 2.1.0
1041  * @since 5.6.0 A return value was added.
1042  *
1043  * @param string $name  Theme modification name.