• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
WordPress core a2z

WordPress core a2z

WordPress core only

  • Home
  • Plugins
  • Blocks
  • Shortcodes
  • APIs
  • Classes
  • Files
  • Hooks
  • Sitemap
  • Blog
Home / APIs / get_theme_file_uri() – Retrieves the URL of a file in the theme.

You appear to be a bot. Output may be restricted

Description

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.

Usage

$string = get_theme_file_uri( $file );

Parameters

$file
( string ) optional – Optional. File to search for in the stylesheet directory.

Returns

string The URL of the file.

Source

File name: wordpress/wp-includes/link-template.php
Lines:

1 to 21 of 21
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 );
}
 

 View on GitHub View on Trac

Published: 25th November 2019 | Last updated: 25th November 2019

Primary Sidebar

Information

Function name: get_theme_file_uri
Plugin ref: WordPress
Version: 5.6.2
Sourcefile: wp-includes/link-template.php
File ref: wp-includes/link-template.php
Deprecated?: No
API Letters: F,G,T,U

Footer

WP-a2z
WordPress core a2z
WordPress core only
WordPress 5.6.2
WordPress a2z
WordPress core a2z
Genesis Theme Framework a2z
Jetpack a2z
WordPress develop tests
Easy Digital Downloads a2z
WooCommerce a2z
Yoast SEO a2z
WordPress Blocks

Site:  core.wp-a2z.org
© Copyright WP-a2z 2014-2021. All rights reserved.


Website designed and developed by Herb Miller
Proudly powered by WordPress and oik plugins

  • Home
  • Blog
  • Sitemap
  • Sites