parent_theme_file_path
Filters the path to a file in the parent theme.
Usage
add_filter( 'parent_theme_file_path', 'wp_kama_parent_theme_file_path_filter', 10, 2 ); /** * Function for `parent_theme_file_path` filter-hook. * * @param string $path The file path. * @param string $file The requested file to search for. * * @return string */ function wp_kama_parent_theme_file_path_filter( $path, $file ){ // filter... return $path; }
- $path(string)
- The file path.
- $file(string)
- The requested file to search for.
Changelog
Since 4.7.0 | Introduced. |
Where the hook is called
parent_theme_file_path
wp-includes/link-template.php 4647
return apply_filters( 'parent_theme_file_path', $path, $file );