get_theme_file_uri
函数
get_theme_file_uri ( $file = '' )
- 参数
-
-
(string)
$file
Optional. File to search for in the stylesheet directory.- Required: 否
- Default: (empty)
-
(string)
- 返回值
-
- (string) The URL of the file.
- 定义位置
-
-
wp-includes/link-template.php
, line 4457
-
wp-includes/link-template.php
- 引入
- 4.7.0
- 弃用
- –
Retrieves the URL of a file in the theme.
Searches in the stylesheet directory before the template directory so themes
which inherit from a parent theme can just override one file.
function get_theme_file_uri( $file = '' ) { $file = ltrim( $file, '/' ); if ( empty( $file ) ) { $url = get_stylesheet_directory_uri(); } elseif ( file_exists( get_stylesheet_directory() . '/' . $file ) ) { $url = get_stylesheet_directory_uri() . '/' . $file; } else { $url = get_template_directory_uri() . '/' . $file; } /** * Filters the URL to a file in the theme. * * @since 4.7.0 * * @param string $url The file URL. * @param string $file The requested file to search for. */ return apply_filters( 'theme_file_uri', $url, $file ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。