Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Best Practice: Check if Function Exists When Adding in WordPress Theme

Editorial Note: We earn a commission from partner links on WPBeginner. Commissions do not affect our editors' opinions or evaluations. Learn more about Editorial Process.

Recently, a user asked us how to check if a PHP function exists before adding some new code to your WordPress site that relies on it.

The best part about WordPress is its flexibility, including the ability to add your own custom functions to your website. However, sometimes, your custom code may not work because the function it’s referring to does not exist anymore.

In this article, we will show you how to easily check if a function exists before adding it to your WordPress theme.

Checking if a function exists in WordPress

Why Add ‘If Function Exists’ to Your Custom Code?

WordPress is mainly written in the PHP programming language. PHP is a server-side programming language that runs on your WordPress hosting provider’s servers.

Because PHP code has to finish running before the page is loaded in your visitors’ browsers, there are certain limitations to it. One of those limitations is that if something goes wrong, it could prevent the whole page from loading.

In WordPress, if a missing function prevents the rest of the code from running, then it halts and displays a critical error or fatal error message.

WordPress critical error message

What can make a function suddenly stop working or go missing?

It’s a more common WordPress error than you might think.

For example, let’s say one of your WordPress plugins comes with a function that you have added to your theme’s header or footer area. Deactivating the plugin will make the function disappear and cause the critical error on your WordPress website.

That being said, let’s take a look at how to easily check if a function exists before executing it in your WordPress theme files.

Checking If a Function Exists in WordPress

Luckily, the PHP programming language comes with a built-in method to easily check the existence of a function before executing it.

Let’s say you have a WordPress function that displays the current time with timezone information. Here’s a sample code snippet that you can use to try it.

You can add it directly to your theme’s functions.php file or use a code snippet plugin such as WPCode (recommended). You can see our guide on how to easily add custom code in WordPress:

//display current time with timezone
function wpb_show_timezone() {
$better_time = current_time('F j, Y g:i a e');
echo "<p>The current time is " . $better_time ."</p>";
}

To call this function, you will need to add the following code anywhere in your WordPress theme where you want to display the current time.

<?php wpb_show_timezone(); ?>

This is how it looked on our testing website.

Function runs normally

Now, what would happen if the code responsible for executing this function disappears?

The call to the function will break your website like this.

Critical error in WordPress

Let’s add a check to make sure that this code only runs when the function exists.

Again, you will need to add the code directly to your theme’s functions.php file or use a code snippet plugin such as WPCode (recommended):

<?php
if( function_exists('wpb_show_timezone')) {
wpb_show_timezone();
} else {
// do nothing
}
?>

In this code, we are using the function_exists() function. This function checks if a function exists and returns True or False.

We then added an if-else condition to take appropriate action depending on the availability of the function.

Now, when the function is no longer available, the code will simply skip it, and WordPress will be able to load the rest of your website normally.

Missing function skipped

We hope this article helped you learn how to check if a function exists in WordPress. You may also want to see our complete WordPress troubleshooting guide or our expert picks for the best drag and drop WordPress page builders.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

4 CommentsLeave a Reply

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Joana Pereira says

    Good call Kovshenin. I know exactly what you mean because I was using a custom function with contact form 7 (to retrieve the ip address on each form) and every time the plugin was updated, the theme broke.

    Thanks for the tip

    Joana Pereira

  3. kovshenin says

    Right, only please stop checking for dynamic_sidebar with function_exists in WordPress themes, unless you need to support WordPress 2.2 and below, which I *highly* doubt. Also with the user photo plugin, the whole approach seems to be wrong and redundant to me, it looks like many developers are missing the whole point of pluggable functions…. Oh well :)

Leave A Reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WPBeginner Assistant
How can I help you?

By chatting, you consent to this chat being stored according to our privacy policy and your email will be added to receive weekly WordPress tutorials from WPBeginner.