Tag: WordPress

WordPress is a content management system (CMS). This system makes it possible for practically anyone to build and manage a website without the need to possess technical knowledge. WordPress is the world’s leading system to create websites and blogs. Currently, approximately 38% of all the content on the web was built with WordPress.

  • What Causes a Blank White Screen?

    What Causes a Blank White Screen?

    A blank white screen on a WordPress site, often called the “White Screen of Death,” is typically caused by a PHP error or memory exhaustion. When a critical error occurs, instead of displaying the error message (which is often disabled for security reasons), PHP stops executing the script. This results in a blank white page being shown to the user.

    Common causes include:

    1. PHP memory limit exceeded
    2. Plugin conflicts or errors
    3. Theme compatibility issues
    4. Corrupted WordPress core files
    5. Database connection problems
    6. PHP version incompatibility
    7. .htaccess file errors
    8. Syntax errors in PHP code

    Here are some common causes and solutions:

    1. PHP Memory Limit:
      • Increase PHP memory limit in wp-config.php file
      • Add: define(‘WP_MEMORY_LIMIT’, ‘256M’);
    2. Plugin Conflicts:
      • Deactivate all plugins
      • Reactivate one by one to identify the problematic plugin
    3. Theme Issues:
      • Switch to a default WordPress theme
      • Check if the issue persists
    4. Corrupted WordPress Core Files:
      • Re-upload fresh WordPress core files
    5. Database Connection Errors:
      • Verify database credentials in wp-config.php
    6. PHP Version Incompatibility:
      • Ensure your hosting supports the minimum required PHP version
    7. .htaccess File Errors:
      • Rename or delete the .htaccess file
      • Generate a new one through WordPress settings
    8. Syntax Errors:
      • Check recently modified files for syntax errors
      • Use FTP to access and edit files if necessary
    9. Hosting Issues:
      • Contact your hosting provider for server-side problems

    Remember to back up your site before making any changes. If you’re not comfortable with these steps, consider seeking help from a WordPress professional.

  • Upgrading to PHP8: Why You Should Upgrade Your WordPress Server

    In a world where tech never stops evolving, staying current is crucial for both optimal user experience and robust security. PHP, the engine behind WordPress, has transitioned through versions 5.x, 6.x, and 7.x, and now stands at version 8. Many are using the sub-version, 8.2. PHP8 brings a host of improvements and compelling features that we’ll delve into. Importantly, support for older PHP versions will cease on November 28, 2022.

    Why It’s Time to Move On

    Elevating Security Measures

    The foremost incentive for migrating to PHP 8 is to guarantee that your WordPress platform runs on a version that regularly receives updates and security patches. Unsupported versions of PHP lack these critical updates, leaving your web applications vulnerable to security risks. Thus, it’s wise to confirm whether your hosting provider offers the most recent PHP versions before deploying a web application.

    Ensuring Compatibility

    Another compelling reason to embrace the latest PHP version is to avoid the pitfalls of incompatibility. Operating on outdated versions could jeopardize the functionality of your website—a major concern for any web developer. Supported versions of PHP are continually refined and monitored to fix any issues or vulnerabilities, making it imperative to stay abreast of the latest updates.

    Boosting Performance Metrics

    PHP 8 brings a notable increase in performance. For instance, PHP 7.4 enabled systems to execute thrice as many REST API requests per second compared to PHP 5.6. PHP 8 takes this a step further, offering performance that is almost four times better. Refer to the table below for detailed speed scores and REST API performance metrics.

    How To Do The Update To PHP8

    Upgrading PHP: A How-to Guide

    Upgrading to a newer PHP version can be a smooth process if you’re prepared. However, potential challenges such as bugs or failed upgrades can occur.

    Pre-Upgrade Checks

    First, make sure that your website is compatible with the latest PHP version. You can check this information through your web hosting control panel. If an upgrade is available, you can usually complete it in a few simple steps. Switching to a supported PHP version through the control panel is generally straightforward.

    PHP Version Lifespan

    Note that a PHP version typically has a lifespan of three years, after which it’s advisable to move on to a newer version.

    Step 1: Make a backup. Backup your entire site and keep that copy safe.

    Use a Backup Plugin

    1. Backup your WordPress site using a plugin like “Duplicator”.
    2. Navigate to your WordPress dashboard, then go to wp-admin > plugins > add new.
    3. Search for “Duplicator.” Side note: Our clients get the use of the Duplicator Pro license. Also, we would do this for our clients.
    4. After activation, follow the on-screen instructions to back up your site.

    With a backup in hand, you can confidently upgrade your PHP version.

    Alternatively, some service providers allow the backup and generation of a staging site. If that’s available, try it out.

    Step 2: Make a staging site. Use the backup to make a staging copy of the website.

    Create an identical copy of your website in a staging environment to test the PHP upgrade. Benefits of using a staging site include:

    • Risk Mitigation: Testing on a staging site helps prevent revenue loss or user decline if something goes wrong. It’s also security through obscurity: if a staging site is hard to find, it’s hard to hack.
    • Thorough Testing: Staging allows for extended testing, reducing the likelihood of overlooking bugs or bugs that only come up from outlier situations.
    • No Downtime or Glitches: Any issues can be fixed on the staging site first, ensuring your reputation remains intact.

    Step 3: Let ‘er rip.

    Update the staging site to PHP 8.1 or 8.2 and then see what breaks. Current code will be ready for PHP8 in most cases. You may see very few issues. If the result is a disaster, make note of all of the errors that came up, then downgrade back to your previous PHP version and proceed cautiously.

    Step 4: Meticulous re-coding.

    If things go wrong with the “Let ‘er rip” approach, you need to do some detective work.

    • Make sure your PHP8 has all of the correct extensions active. Some service providers offer PHP8 but leave many of the extensions inactive.
    • Make sure WordPress code is current. It will be PHP8 compatible.
    • Make sure your theme is current. If it isn’t, contact the developer who made the theme and ask them for a PHP8 compatible version.
    • Make sure the plugins are current. Again: if they cause issues, take those issues to the respective plugin developers.
    • Make sure your custom code works. If it doesn’t bring in a developer. (we’re developers, FYI).

    PHP.net list of Changes

    This list of changes and issues comes from PHP.net:

    Other incompatible Changes

    • match is now a reserved keyword.

    • mixed is now a reserved word, so it cannot be used to name a class, interface or trait, and is also prohibited from being used in namespaces.

    • Assertion failures now throw by default. If the old behavior is desired, assert.exception=0 can be set in the INI settings.

    • Methods with the same name as the class are no longer interpreted as constructors. The __construct() method should be used instead.

    • The ability to call non-static methods statically has been removed. Thus is_callable() will fail when checking for a non-static method with a classname (must check with an object instance).

    • The (real) and (unset) casts have been removed.

    • The track_errors ini directive has been removed. This means that php_errormsg is no longer available. The error_get_last() function may be used instead.

    • The ability to define case-insensitive constants has been removed. The third argument to define() may no longer be true.

    • The ability to specify an autoloader using an __autoload() function has been removed. spl_autoload_register() should be used instead.

    • The errcontext argument will no longer be passed to custom error handlers set with set_error_handler().

    • create_function() has been removed. Anonymous functions may be used instead.

    • each() has been removed. foreach or ArrayIterator should be used instead.

    • The ability to unbind this from closures that were created from a method, using Closure::fromCallable() or ReflectionMethod::getClosure(), has been removed.

    • The ability to unbind this from proper closures that contain uses of this has also been removed.

    • The ability to use array_key_exists() with objects has been removed. isset() or property_exists() may be used instead.

    • The behavior of array_key_exists() regarding the type of the key parameter has been made consistent with isset() and normal array access. All key types now use the usual coercions and array/object keys throw a TypeError.

    • Any array that has a number n as its first numeric key will use n+1 for its next implicit key, even if n is negative.

    • The default error_reporting level is now E_ALL. Previously it excluded E_NOTICE and E_DEPRECATED.

    • display_startup_errors is now enabled by default.

    • Using parent inside a class that has no parent will now result in a fatal compile-time error.

    • The @ operator will no longer silence fatal errors (E_ERROR, E_CORE_ERROR, E_COMPILE_ERROR, E_USER_ERROR, E_RECOVERABLE_ERROR, E_PARSE). Error handlers that expect error_reporting to be 0 when @ is used, should be adjusted to use a mask check instead:

      <?php
      // Replace
      function my_error_handler($err_no, $err_msg, $filename, $linenum) {
      if (error_reporting() == 0) {
      return false;
      }
      // ...
      }

      // With
      function my_error_handler($err_no, $err_msg, $filename, $linenum) {
      if (!(error_reporting() & $err_no)) {
      return false;
      }
      // …
      }
      ?>

    Additionally, care should be taken that error messages are not displayed in production environments, which can result in information leaks. Please ensure that display_errors=Off is used in conjunction with error logging.

    • #[ is no longer interpreted as the start of a comment, as this syntax is now used for attributes.

    • Inheritance errors due to incompatible method signatures (LSP violations) will now always generate a fatal error. Previously a warning was generated in some cases.

    • The precedence of the concatenation operator has changed relative to bitshifts and addition as well as subtraction.

      <?php
      echo "Sum: " . $a + $b;
      // was previously interpreted as:
      echo ("Sum: " . $a) + $b;
      // is now interpreted as:
      echo "Sum:" . ($a + $b);
      ?>
    • Arguments with a default value that resolves to null at runtime will no longer implicitly mark the argument type as nullable. Either an explicit nullable type, or an explicit null default value has to be used instead.

      <?php
      // Replace
      function test(int $arg = CONST_RESOLVING_TO_NULL) {}
      // With
      function test(?int $arg = CONST_RESOLVING_TO_NULL) {}
      // Or
      function test(int $arg = null) {}
      ?>
    • A number of warnings have been converted into Error exceptions:

      • Attempting to write to a property of a non-object. Previously this implicitly created an stdClass object for null, false and empty strings.
      • Attempting to append an element to an array for which the PHP_INT_MAX key is already used.
      • Attempting to use an invalid type (array or object) as an array key or string offset.
      • Attempting to write to an array index of a scalar value.
      • Attempting to unpack a non-array/Traversable.
      • Attempting to access unqualified constants which are undefined. Previously, unqualified constant accesses resulted in a warning and were interpreted as strings.
      • Passing the wrong number of arguments to a non-variadic built-in function will throw an ArgumentCountError.

      A number of notices have been converted into warnings:

      • Attempting to read an undefined variable.
      • Attempting to read an undefined property.
      • Attempting to read an undefined array key.
      • Attempting to read a property of a non-object.
      • Attempting to access an array index of a non-array.
      • Attempting to convert an array to string.
      • Attempting to use a resource as an array key.
      • Attempting to use null, a boolean, or a float as a string offset.
      • Attempting to read an out-of-bounds string offset.
      • Attempting to assign an empty string to a string offset.
    • Attempting to assign multiple bytes to a string offset will now emit a warning.

    • Unexpected characters in source files (such as NUL bytes outside of strings) will now result in a ParseError exception instead of a compile warning.

    • Uncaught exceptions now go through “clean shutdown”, which means that destructors will be called after an uncaught exception.

    • The compile time fatal error “Only variables can be passed by reference” has been delayed until runtime, and converted into an “Argument cannot be passed by reference” Error exception.

    • Some “Only variables should be passed by reference” notices have been converted to “Argument cannot be passed by reference” exception.

    • The generated name for anonymous classes has changed. It will now include the name of the first parent or interface:

      <?php
      new class extends ParentClass {};
      // -> ParentClass@anonymous
      new class implements FirstInterface, SecondInterface {};
      // -> FirstInterface@anonymous
      new class {};
      // -> class@anonymous
      ?>

      The name shown above is still followed by a NUL byte and a unique suffix.

    • Non-absolute trait method references in trait alias adaptations are now required to be unambiguous:

      <?php
      class X {
      use T1, T2 {
      func as otherFunc;
      }
      function func() {}
      }
      ?>

      If both T1::func() and T2::func() exist, this code was previously silently accepted, and func was assumed to refer to T1::func. Now it will generate a fatal error instead, and either T1::func or T2::func needs to be written explicitly.

    • The signature of abstract methods defined in traits is now checked against the implementing class method:

      <?php
      trait MyTrait {
      abstract private function neededByTrait(): string;
      }

      class MyClass {
      use MyTrait;

      // Error, because of return type mismatch.
      private function neededByTrait(): int { return 42; }
      }
      ?>

    • Disabled functions are now treated exactly like non-existent functions. Calling a disabled function will report it as unknown, and redefining a disabled function is now possible.

    • data:// stream wrappers are no longer writable, which matches the documented behavior.

    • The arithmetic and bitwise operators +, -, *, /, **, %, <<, >>, &, |, ^, ~, ++, -- will now consistently throw a TypeError when one of the operands is an array, resource or non-overloaded object. The only exception to this is the array + array merge operation, which remains supported.

    • Float to string casting will now always behave locale-independently.

      <?php
      setlocale(LC_ALL, "de_DE");
      $f = 3.14;
      echo $f, "\n";
      // Previously: 3,14
      // Now: 3.14
      ?>

      See printf(), number_format() and NumberFormatter() for ways to customize number formatting.

    • Support for deprecated curly braces for offset access has been removed.

      <?php
      // Instead of:
      $array{0};
      $array{"key"};
      // Write:
      $array[0];
      $array["key"];
      ?>
    • Applying the final modifier on a private method will now produce a warning unless that method is the constructor.

    • If an object constructor exit()s, the object destructor will no longer be called. This matches the behavior when the constructor throws.

    • Namespaced names can no longer contain whitespace: While Foo\Bar will be recognized as a namespaced name, Foo \ Bar will not. Conversely, reserved keywords are now permitted as namespace segments, which may also change the interpretation of code: new\x is now the same as constant('new\x'), not new \x().

    • Nested ternaries now require explicit parentheses.

    • debug_backtrace() and Exception::getTrace() will no longer provide references to arguments. It will not be possible to change function arguments through the backtrace.

    • Numeric string handling has been altered to be more intuitive and less error-prone. Trailing whitespace is now allowed in numeric strings for consistency with how leading whitespace is treated. This mostly affects:

      • The is_numeric() function
      • String-to-string comparisons
      • Type declarations
      • Increment and decrement operations

      The concept of a “leading-numeric string” has been mostly dropped; the cases where this remains exist in order to ease migration. Strings which emitted an E_NOTICE “A non well-formed numeric value encountered” will now emit an E_WARNING “A non-numeric value encountered” and all strings which emitted an E_WARNING “A non-numeric value encountered” will now throw a TypeError. This mostly affects:

      • Arithmetic operations
      • Bitwise operations

      This E_WARNING to TypeError change also affects the E_WARNING “Illegal string offset ‘string’” for illegal string offsets. The behavior of explicit casts to int/float from strings has not been changed.

    • Magic Methods will now have their arguments and return types checked if they have them declared. The signatures should match the following list:

      • __call(string $name, array $arguments): mixed
      • __callStatic(string $name, array $arguments): mixed
      • __clone(): void
      • __debugInfo(): ?array
      • __get(string $name): mixed
      • __invoke(mixed $arguments): mixed
      • __isset(string $name): bool
      • __serialize(): array
      • __set(string $name, mixed $value): void
      • __set_state(array $properties): object
      • __sleep(): array
      • __unserialize(array $data): void
      • __unset(string $name): void
      • __wakeup(): void
    • call_user_func_array() array keys will now be interpreted as parameter names, instead of being silently ignored.

    • Declaring a function called assert() inside a namespace is no longer allowed, and issues E_COMPILE_ERROR. The assert() function is subject to special handling by the engine, which may lead to inconsistent behavior when defining a namespaced function with the same name.

    Resource to Object Migration

    Several resources have been migrated to objects. Return value checks using is_resource() should be replaced with checks for false.

  • Ultimate Lists: How To Use Shortcodes Ultimate to Build Great Lists In WordPress

    Shortcodes Ultimate is a popular WordPress plugin that provides a variety of shortcodes that allow users to add various functionality and design elements to their website. One of the most useful shortcodes in the plugin is the su_post shortcode, which allows users to display posts on their website with customizable options.

    In this article, we will go over how to use the su_post shortcode, including its syntax, available attributes, and some examples of how to use it.

    Syntax of su_post Shortcode

    To display a post using the su_post shortcode, you would use the following syntax:

    Ultimate Lists: How To Use Shortcodes Ultimate to Build Great Lists In WordPress

    “post_ID” is the ID number of the post you want to display.

    Attributes of su_post Shortcode

    The su_post shortcode has a number of attributes that you can use to customize the way your posts are displayed. Here are the available attributes:

    id

    The “id” attribute is required for the su_post shortcode, as it specifies which post to display. To use this attribute, you need to replace “post_ID” in the basic syntax with the actual ID number of the post you want to display.

    For example, if the ID number of the post you want to display is 123, you would use the following code:

    Ultimate Lists: How To Use Shortcodes Ultimate to Build Great Lists In WordPress

    post_type

    By default, the su_post shortcode displays posts from the “post” post type. However, you can use the “post_type” attribute to display posts from other post types, such as “page” or a custom post type.

    To use this attribute, simply add it to the shortcode and set its value to the post type you want to display. For example, to display a page with ID 456, you would use the following code:

    Ultimate Lists: How To Use Shortcodes Ultimate to Build Great Lists In WordPress

    class

    The “class” attribute allows you to add custom CSS classes to the HTML elements generated by the shortcode. This can be useful for styling the output of the shortcode with CSS.

    To use this attribute, simply add it to the shortcode and set its value to the CSS class(es) you want to use. For example, to add the class “my-custom-class” to the output of the shortcode, you would use the following code:

    Ultimate Lists: How To Use Shortcodes Ultimate to Build Great Lists In WordPress

    template

    The “template” attribute allows you to use a custom template file to display the post. This can be useful if you want to display posts in a specific way that is not possible with the default output of the shortcode.

    To use this attribute, simply add it to the shortcode and set its value to the file path of the template you want to use. For example, to use a template file called “news-loop.php” located in your theme’s directory, you would use the following code:

    Ultimate Lists: How To Use Shortcodes Ultimate to Build Great Lists In WordPress
    <ul class="su-posts su-posts-news-loop">
    <?php
    // Posts are found
    if (isset($args['data'])) {
    $posts = $args['data'];
    }
    if ( $posts->have_posts() ) {
    $cat_singular = array(
    'blog' => 'Blog',
    'case-study' => 'Case Study',
    'company-update' => 'Company Update', 
    'new' => 'News',
    'resources' => 'Resources',
    'videos' => 'Videos'
    );
    
    $cat_css = array(
    'blog' => 'blog',
    'case-study' => 'case-study',
    'company-update' => 'company-update', 
    'new' => 'news',
    'resources' => 'resource',
    'videos' => 'video'
    );
    
    $cat_img = array(
    'blog' => '/wp-content/themes/CustomTheme/assets/img/article-sm.png', n
    'articles-whitepapers' => '/wp-content/themes/CustomTheme/assets/img/article-sm.png',
    'case-studies' => '/wp-content/themes/CustomTheme/assets/img/case_study-sm.png',
    'new' => '/wp-content/themes/CustomTheme/assets/img/article-sm.png',
    'resources' => '/wp-content/themes/CustomTheme/assets/img/article-sm.png',
    'videos' => '/wp-content/themes/CustomTheme/assets/img/video-sm.png'
    ); 
    
    
    $roundout = 0;
    while ( $posts->have_posts() ) {
    $posts->the_post();
    global $post;
    
    $singular = 'N/A';
    $css = 'na'; 
    $roundout++;
    
    $categories = get_the_category(); 
    $tags = get_the_tags(); 
    
    // print print_r($categories, TRUE);
    
    // should be one per...
    foreach ($categories as $cat) {
    if (array_key_exists($cat->slug, $cat_singular)) {
    $cat_slug = $cat->slug; 
    $singular = $cat_singular[$cat_slug];
    if (isset($cat_css[$cat_slug])) {
    $css = $cat_css[$cat_slug];
    } 
    else {
    $css = '';
    }
    if (isset($cat_img[$cat_slug])) {
    $img = $cat_img[$cat_slug];
    } 
    else {
    $img = '';
    }
    
    break;
    }
    }
    // get all tags
    $tag_list = "";
    $comma = "";
    if ($tags) {
    foreach ($tags as $tag) {
    $tag_list .= $comma.'<a href="' . esc_attr( get_tag_link( $tag->term_id ) ) . '">' . __( $tag->name ) . '</a>';
    $comma = ", ";
    }
    } 
    ?>
    <li id="su-post-<?php the_ID(); ?>" class="su-post <?php print $css; ?>-grid"><a href="<?php the_permalink(); ?>">
    <?php if ($loop_thumb = get_the_post_thumbnail_url() ) { ?>
    <div class="su-top" style="background-image: url('<?php echo $loop_thumb; ?>');">
    <?php }
    else {
    ?>
    <div class="su-top" style="background-color: #888888;">
    <?php } ?>
    <img src="/wp-content/uploads/2023/01/blank.png" style="width: 100%; height: 25vh;" />
    </div>
    <div class="su-middle"> 
    <h3 class="su-post-title rightarrow"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
    <em><?php echo $tag_list; ?></em>
    <?php 
    if ($excerpt = get_the_excerpt()) {
    print "<p>".$excerpt."</p>"; 
    print "<br/>";
    }
    ?>
    <?php print $runtime; ?>
    </div> 
    <div class="su-bottom">
    <span class="date"><?php print get_the_date('F j, Y', get_the_ID()) ?></span>
    <span class="link"><a class="rightarrow" href="<?php the_permalink(); ?>">Link</a></span>
    </div>
    
    </li>
    <?php
    }
    }
    // Posts not found
    else {
    ?>
    <li><?php _e( 'No Results', 'shortcodes-ultimate' ) ?></li>
    <?php
    }
    ?>
    </ul>
    

    blankThe news-loop.php goes into the templates sub-directory of the site’s active theme. When the template loops through the su_posts result, the template will handle the output. In our example, the control of the output lets us add more formatting and supporting information.

    The su_posts shortcode is a versatile tool that can be used in many different ways to improve the functionality and user experience of your website. Shortcodes Ultimate is a popular WordPress plugin that provides a variety of useful shortcodes for adding various elements to your website.

    There are even more advanced ways to make use of the su_post shortcode. Want to know more?

  • WordPress: How Popular Is It?

    WordPress has become a global marvel and it has taken a long leap since its release in 2003. From the 1st version of WordPress in 2003, it has been growing considerably even today.

    Being the most superior CMS in this industry, WordPress stands above its rival brands and constitutes a good amount of market share. The sheer scope and size of the impact of WordPress are huge, which is why we have gathered some shocking stats to help you put into perspective.

    The Project Cost Calculator of Open Hub claims that WordPress took approximately 112 person-years to build itself with 423,759 lines of code and an approximate cost of $6 million to fund the size of this project.

    The WordPress platform is a simple and free content management system that involves varying levels of technical knowledge to develop impressive and innovative websites and web content. The boundless library of plugins and themes boosts the possibility of this platform.

    If you want to make an online appearance today, you can follow the WordPress stats that can help you to gain an online presence. The following are the important WordPress stats in 2020 that you may need to know –

    • WordPress powers 35 percent of the internet with a 2 percent surge in contrast with early 2019 and a 4 percent increase compared to 2019.
    • If you consider the sites built by only CMS, around 60 percent of the CMS-built sites are WordPress.
    • Around 661 WordPress websites pop up every day.
    • Back in 2018, non-English WordPress downloads outpaced the English ones.

    These numbers are facts that are important since WordPress plays a vital role in the online marketing environment.

    The capabilities and contribution of this platform have motivated others to level their playing field and compete. The central determiner of the effectiveness of this platform is not the net worth but their creativity. This is why it is possible for small businesses to compete with global companies who enjoy major marketing budgets.

    • 59% of websites using well-known content management systems are using WordPress. There are around 46.2 percent sites globally that do not use a CMS and the rest depend on WordPress.
    • There are 64 million websites that employ WordPress in absolute measures. This stat is based on the global count of active sites, according to the Netcraft.
    • WordPress is accountable for the added 1.1 million domain registration every half-yearly. This stat is an estimated value from 2015. The actual value is likely to be more since the level of market penetration and domain registration of WordPress have risen.
    • Around 34 percent of the 10,000 most famous websites across the world use WordPress. These famous sites are Etsy, Reuters, TED, Whitehouse.gov, Yelp, TechCrunch, The New Yorker, and People. Among international celebrities, Snoop Dogg, Justine Bieber, Katy Perry, Jay Z, and Stephen Fry also use this platform.
    • The second most commonly used CMS, Joomla, constitutes 5.7 percent of the market share. This positively skewed market has many competitors but only one of them has been able to take an enormous lead. Drupal, Shopify, and Squarespace follow Joomla with market shares of 3.7%, 2.4%, and 2.5%, respectively.
    • WordPress 4.9 version has been downloaded around 159 million times. When you read this article, WordPress downloads would cross 160 million.
    • WordPress receives unique monthly visitors the same as Twitter. According to Twitter stats, unique monthly visits are around 152 million in the US but for WordPress, it is around 149 million. Both Amazon (with 199 million visits) and Twitter recently ranked lower than WordPress in terms of unique monthly visitors.
    • WordPress users create around 52.1 million comments and 70.5 million new posts every month. This blogging platform encourages a huge population across the world to initiate discussions and add fresh content every month.
    • A total of 409 million users view at least 21.1 billion pages every month on the popular WordPress sites. For daily content consumption, a higher count of users views WP blogs.
    • WooCommerce constitutes 27.7 percent of the market share among all eCommerce platforms. This is vital information for all online businesses. Online business platforms let merchants build digital stores to allow transactions online. WooCommerce is an eCommerce platform of WordPress that is growing faster than the competitors such as Shopify and Squarespace.
    • Around 13.2 percent of all sites use WooCommerce.
    • 7.5 million spam comments are blocked by Akismet every hour. Akismet is a famous WordPress plugin that saves its users who deal with spam. Spam is one of the most common nuisances online today.
    • In 2017, the 3 best WordPress plugins were WordPress Importer, WooCommerce, and the All in One SEO Pack.

    The WordPress usability statistics in 2020 are as follows –

    • WordPress.com is different from WordPress.org. These 2 versions can be very confusing. The latter is a free and open-source CMS built for the WP software. Whereas, WordPress.com is the blogging platform that is based on the said software.
    • To host an appreciable WordPress site, it costs as low as $60. At this cost, you also get unmetered bandwidth and sufficient storage. In the case of a high-traffic site, you might have to go for expensive versions such as the managed WordPress hosting.
    • Being platform-agnostic, WordPress provides native applications for common platforms such as iOS, Windows Phone, WebOS, Android, and even Blackberry. You can use all the functions regardless of what system you are using.
    • WordPress is currently offering 47,350 active plugins out of a sum of 56,311 plugins listed by the Plugin Directory for WordPress.
    • Around 80 to 90 percent of the SEO mechanics are taken care of by WordPress. This stat was mentioned by Matt Cutts in 2009 who was the head of Google’s webspam group. The platform is still continuing to make it more SEO-friendly with more plugins to assist its users in getting the SEO right.
    • At least 36 percent of WordPress sites are served by HTTPS. This figure denotes an increase of more than double from 2016.
    • Being the fastest growing web-publishing platform, WordPress helps you to draw more traffic with higher ranks of WordPress keywords than its competitors.
    • Despite issues, Jetpack is the most accepted WordPress plugin for all marketers. It is a free tool, facilitating vital tasks such as social media integration, traffic insight, security, and backups.
    • WordPress employs not more than 800 workers worldwide, the majority of which are from the US. They collaborate from their residence and they ensure that the requirements of all countries are met.
    • WordPress involves more than 100 contributors. Being the world’s one of the biggest open-source platforms, it has 100 contributors in the developer team, containing more than 430,000 lines of codes.
    • Taking 2020 as an exception to the rule, WordPress has helped 128 WordCamps in around 48 countries, involving 1091 sponsors and 2310 speakers in 2017.
    • This WP platform has also had 4379 meetups, a surge of 43 percent compared to 2016. Above 99 thousand people attended the meetups which were a whopping rise of 65 percent from 2016. The reason for this upsurge was because of the introduction of the Events widget in the WP 4.8 version.
    • Some of the amazing WordPress sites are shown at WordPress.org site. The platform showcases the best sites and the list includes names like the City University of New York, the Obama Foundation, and the Houston Zoo.
    • A typical WordPress developer earns an average of $50,365 in the US.
    • WordPress has denied around 61 percent of DMCA takedown notices. This has added transparency to functionality, security, and versatility. DMCA notices are filed by individuals or companies if they find any posts on the platform trespassing on intellectual property rights.
    • WP has also denied around 65 percent of government information requests. WordPress not only cooperates with the government on important and valid cases but also strongly resists circulating information that puts the blogger’s freedom of expression at stake.
    • The major WordPress versions are released after approximately 152 days.
    • Most number of downloads on WordPress is done on Wednesdays and least on Fridays.

    WordPress is one of the most widely known content management systems and blogging platforms.

    The above WordPress stats prove that the popularity of this platform is not only because of its simplicity and low costs but also other factors such as a wide range of themes and plugins, security, SEO-friendliness, and language packs availability.

    The popular platform has journeyed a long way. It has evolved from basic and simple blogging too to a global phenomenon, endorsed by some of the biggest brands and popular celebrities. The features of WordPress are particularly helpful for small and medium businesses since it allows the use of high-functioning and attractive websites without having an expert developer or big budget.

    The shocking WordPress stats provided in the article prove the capacity of this platform and why it has spread to such a large extent in terms of usability, web standards, security, etc. The WordPress community is flourishing at an increasing rate every day.


    References

    https://www.whoishostingthis.com/compare/wordpress/stats/

    https://hostingtribunal.com/blog/wordpress-statistics/#gref

    https://digital.com/wordpress-hosting/wordpress-stats/

We’ll take good care of your website.

Copyright © 2025 – Web321 | All Right Reserved