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) The URL of the file.
定义位置
相关方法
get_parent_theme_file_pathget_theme_file_uriwp_print_theme_file_treeget_registered_theme_featureget_theme_file_path
引入
4.7.0
弃用
-

get_parent_theme_file_uri函数是一个WordPress的函数,用于检索父主题目录中的文件的URL: 这个函数接受一个参数,即你要检索的文件的URL的文件名: 该函数返回指定文件的URL。

检索父主题中一个文件的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 );
}

常见问题

FAQs
查看更多 >