Top WordPress blog hosting - WordPress blog hosting compared ✍️

WordPress blog hosting compared ✍️

I wrote this simple guide knowing that hosting your WordPress site is an important decision and choosing the wrong hosting company can harm your site in many different ways. In what ways? Well, website speed is a crucial element these days when it comes to how Google sees your website. WordPress site is slow to … Read full article →

is home vs is front page - is_home() vs is_front_page()

is_home() vs is_front_page()

is_home() and is_front_page() are both conditional tags in WordPress that can be used to check whether the currently viewed page is the site’s Home Page. However, they have slightly different meanings and use cases: What is the difference between is_home and is_front_page functions in WordPress? is_home() check if the current page is the main blog posts index (latest posts) … Read full article →

How to remove meta generator tag from WordPress - How to remove meta generator tag from WordPress

How to remove meta generator tag from WordPress

WordPress has an HTML meta generation tag that shows that your website is running WordPress and which version exactly. If you right-click on this page and choose View Source, you can find this tag by searching for “generator” in the source code. You should see something similar to: <meta name=”generator” content=”WordPress 6.0.3″ /> This code … Read full article →

Suggestions to reduce the wp options table size - Suggestions to reduce the wp_options table size

Suggestions to reduce the wp_options table size

In this post I discussed an example where wp_options table had 900k rows of plugin-based data in it, causing the wp-admin dashboard to load slowly. As noted there, good coding practice is for each plugin to create its own database tables and use those instead of default WP tables. While the WordPress community actively improves … Read full article →

WPXSS CLANCI - wp_actionscheduler_actions & wp_actionscheduler_logs tables

wp_actionscheduler_actions & wp_actionscheduler_logs tables

WooCommerce plugin uses the wp_actionsscheduler_actions table in the database to log scheduled actions such as cron’s running, product synchronization, upgrade, etc. These actions should be deleted once they are executed but this doesn’t always happen, in most cases, this table uses an InnoDB database engine with a row-level locking feature meaning that multiple queries can … Read full article →