How to Block IP Addresses in WordPress using PHP

There may be times when you need to block certain IP addresses from accessing your WordPress site, whether due to malicious activity, repeated login attempts, or other security concerns. While there are plugins available to manage this, you can achieve the same result with a simple custom code snippet.

In this post, we'll show you how to block specific IP addresses in WordPress using a PHP function. By adding the code below to your theme’s functions.php file, you can prevent users from accessing your site based on their IP addresses and display a custom message to them.

function themesdna_block_ip_address() {
    // List of blocked IP addresses
    $blocked_ips = array( 
        '123.45.67.89', 
        '98.76.54.32'
    );

    // Get the user's real IP address, accounting for proxies
    $user_ip = '';
    if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
        $user_ip = $_SERVER['HTTP_CLIENT_IP']; // IP from shared internet
    } elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
        $user_ip = explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] )[0]; // IP passed from proxy
    } else {
        $user_ip = $_SERVER['REMOTE_ADDR']; // Direct IP
    }

    // Ensure IP is sanitized
    $user_ip = filter_var( $user_ip, FILTER_VALIDATE_IP );

    // Check if the user's IP is in the blocked list
    if ( $user_ip && in_array( $user_ip, $blocked_ips ) ) {
        wp_die(
            wp_kses_post( '<h1>Access Blocked</h1><p>Your IP address (' . esc_html( $user_ip ) . ') has been blocked from accessing this site. Please contact the administrator if you believe this is a mistake.</p>' ),
            esc_html__( 'Access Blocked', 'themesdna' ),
            array( 'response' => 403 ) // Send a 403 Forbidden HTTP response
        );
    }
}
add_action( 'init', 'themesdna_block_ip_address' );

Important Notes:

  • The $blocked_ips array contains the IP addresses you want to block. The values "123.45.67.89" and "98.76.54.32" are sample addresses; be sure to replace them with the specific IPs you wish to block. You can easily add or remove IP addresses from this list as needed.
  • You can also customize the message that’s displayed to blocked users by modifying the text in the wp_die() function.
  • Regularly update the $blocked_ips array as needed and keep an eye on any suspicious activity on your site.

This solution gives you flexibility and control over which IP addresses are blocked without needing to install additional plugins.

Our WordPress Themes

Below are some of our premium WordPress themes. View all our free and premium WordPress themes →
GridMode PRO WordPress Theme

GridMode PRO

Are you using the GridMode free WordPress Theme and looking for more advanced features? GridMode PRO theme is developed for...

$25.00
FreshWP PRO WordPress Theme

FreshWP PRO

If you like FreshWP free WordPress Theme, you will love the premium version. FreshWP PRO is very user friendly, feature-rich,...

$25.00
TextWP PRO WordPress Theme

TextWP PRO

TextWP PRO is an more improved and advanced version of TextWP Free WordPress Theme. When compare with the TextWP free...

$25.00
Simple Writer PRO WordPress Theme

Simple Writer PRO

Simple Writer PRO is a feature-rich, improved and advanced version of Simple Writer Free WordPress Theme. When compare with the...

$25.00
BoldWP PRO WordPress Theme

BoldWP PRO

If you have tried BoldWP Free WordPress Theme, then you will love the premium version. BoldWP PRO is an more...

$25.00
GridRead PRO WordPress Theme

GridRead PRO

If you like GridRead Free WordPress Theme, then you will love the premium version. GridRead PRO version has color options,...

$25.00
CuteWP PRO WordPress Theme

CuteWP PRO

If you like CuteWP free WordPress Theme, you will love the premium version. CuteWP PRO is an improved version of...

$25.00
GridWP PRO WordPress Theme

GridWP PRO

If you like GridWP free WordPress Theme, you will love the premium version. GridWP PRO is an improved version of...

$25.00

Can't you choose a single theme? Purchase All Themes for $75.

Save money with our low, one-time price for access to all of our 56 WordPress themes.