• Skip to secondary menu
  • Skip to main content
  • Skip to primary sidebar
  • Home
  • Projects
  • Products
  • Themes
  • Tools
  • Request for Quote

Vengala Vinay

Having 9+ Years of Experience in Software Development

  • Home
  • WordPress
  • PHP
  • Codeigniter
  • Magento
  • Selenium
  • Server
Home » How to use WordPress path utility functions to load external files and images

How to use WordPress path utility functions to load external files and images

On occasion, plugins need to refer to external files (for example, images, JavaScript, or jQuery script files) that are stored in the plugin directory. Since users are free to rename a plugin’s folder or even install plugin files straight into the WordPress plugins directory, paths to any external files must be built dynamically based on the actual plugin location. Thankfully, a number of utility functions are present to simplify this task.

How to do it…

Follow these steps to create a simple plugin that will add a favicon meta tag to a website’s header, pointing to an image file located in the plugin’s directory:

  1. Navigate to the WordPress plugins directory of your development installation.
  2. Create a new directory called add-favicon
  3. Use a web service, such as favicongrabber.com or getfavicon.org, to retrieve a website’s favicon (for example, https://www.vengalavinay.com) and store it in the add-favicon directory with its default name (favicon.ico).
  4. Navigate to the add-favicon directory and create a new text file called favicon-functionality.php
  5. Open the new file in a code editor and add an appropriate header at the top of the plugin file.
    /*
    Plugin Name: Add Favicon
    Plugin URI:
    Description: Functionality to add favicon icon to <head> tag in the frontend
    Version: 1.0
    Author: Vinay Vengala
    Author URI: https://www.vengalavinay.com/contact-us/
    License: GPLv2
    */
  6. Add the following line of code to register a function that will be called when WordPress renders the page header:
    add_action( 'wp_head', 'v_add_favicon_icon' );
  7. Add the following code section to provide an implementation for the v_add_favicon_icon function:
    function v_add_favicon_icon() {
        $site_icon_url = get_site_icon_url();
        if ( !empty( $site_icon_url ) ) {
            wp_site_icon();
        } else {
            $icon = plugins_url( 'favicon.ico',  __FILE__ );
        ?>
        <link rel="shortcut icon"
              href="<?php echo esc_url( $icon ); ?>" />
        <?php }
    }
  8. Save and close the plugin file.
  9. Log in to the administration page of your development WordPress installation.
  10. Click on Plugins in the left-hand navigation menu.
  11. Activate your new plugin.
  12. Navigate to your website’s front page and refresh it to see that the icon file that you assigned through your plugin code now appears in your browser’s address bar, title bar, or navigation tab, depending on your preferred browser.
  13. Go to the Appearance section of your development site’s Dashboard and Activate a theme other than Twenty Twenty-Two (for example, Twenty Twenty-One or Twenty Twenty). You may need to install one of these themes if they are not present in your development environment.
  14. Select the Customize submenu under the Appearance menu.
  15. Under Site Identity, assign a square image that is at least 512 x 512 pixels in dimension as the Site Icon; then, click the Publish button at the top of the customizer.
  16. Refresh your website to see that the newly assigned site icon image is now displayed instead of the favicon.ico file.
    Go back to the Appearance section and Activate the Twenty Twenty-Two theme.

How it works…

The plugins_url utility function, used in conjunction with the __FILE__ PHP constant and the name of our favicon file, allows us to quickly get the URL of this file located in our plugin directory. Once we have it, we can print out the appropriate HTML command to notify browsers of the location of this file.

The plugins_url function can be called with or without parameters. In the first case, it builds a URL by appending the path or filename found in the first parameter to the location of the file specified in the second argument. In the second situation, it simply returns the location of the plugin directory:

plugins_url( $path, $plugin );

Before we display our plugin’s favicon file, we also call the get_site_icon_url function to see whether the user has already assigned a site icon using the WordPress customizer. If that is the case, we give priority to that icon and display it using the wp_site_icon() function.

The Twenty Twenty-Two theme found in WordPress 5.9 is built using a new theme creation technique and does not have a customizer section. This is why we change our site theme to demonstrate how our code takes into consideration site icons assigned in the customizer. The majority of themes available today have customizer sections, but this may change as WordPress evolves. The Twenty Twenty-Two theme may also add a customizer section in future releases.

There’s more…

The plugins_url function is one of the many functions that can be used in plugins to help find the location of files in a WordPress installation. Other useful functions include the following:

get_theme_root(): Returns the address of the theme installation directory
get_template_directory_uri(): Retrieves the URL to the current theme’s files
admin_url(): Provides the address of the WordPress administrative pages
content_url(): Indicates where the wp-content directory can be found
site_url() and home_url(): Returns the site address
includes_url(): Provides the location of WordPress include files
wp_upload_dir(): Indicates the directory where user-uploaded files are stored

Reader Interactions

Leave a Reply Cancel reply

You must be logged in to post a comment.

Primary Sidebar

A little about the Author

Having 9+ Years of Experience in Software Development.
Expertised in Php Development, WordPress Custom Theme Development (From scratch using underscores or Genesis Framework or using any blank theme or Premium Theme), Custom Plugin Development. Hands on Experience on 3rd Party Php Extension like Chilkat, nSoftware.

Recent Posts

  • How to add share via email functionality after each item’s content using filters
  • How to modify the site generator meta tag using filters
  • How to use WordPress path utility functions to load external files and images
  • How to use hooks and add output content to page head
  • How to create a basic plugin in WordPress?

Copyright © 2025 · Vinay Vengala