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