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:
- Navigate to the WordPress plugins directory of your development installation.
- Create a new directory called
add-favicon
- 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). - Navigate to the
add-favicon
directory and create a new text file calledfavicon-functionality.php
- 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 */
- 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' );
- 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 } }
- Save and close the plugin file.
- Log in to the administration page of your development WordPress installation.
- Click on Plugins in the left-hand navigation menu.
- Activate your new plugin.
- 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.
- 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.
- Select the Customize submenu under the Appearance menu.
- 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.
- 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
Leave a Reply
You must be logged in to post a comment.