Best Show-Hide/Collapse-Expand WordPress Plugins

Show-hide or collapse-expand functionality allows users to hide or show content on a web page by clicking on a designated button or link. This can be useful for displaying large amounts of information in a compact way, or for organizing content into sections that can be revealed as needed. So here in this article, we will learn about show-hide / collapse-expand WordPress.

In WordPress, this functionality can be implemented using plugins, which are add-ons that extend the capabilities of the WordPress platform. There are many different show-hide/collapse-expand plugins available, and the best one for you will depend on your specific needs and preferences. Some popular options include WP Collapse-O-Matic, Simple Show Hide, and Collapse-Pro. To find the right plugin for your site, you may want to do some research and read reviews to compare the features and functionality of different options.

WP-ShowHide

WP-ShowHide is a WordPress plugin that allows you to easily add a show/hide toggle to your WordPress site. This can be useful for hiding or revealing content on your sites, such as spoilers, spoilers, or additional information. To use the plugin, you can follow these steps:

  1. Install and activate the WP-ShowHide plugin on your WordPress site.
  2. Configure the plugin settings by going to Settings > WP-ShowHide in the WordPress admin dashboard. This may include options such as the toggle text, toggle style, and other customization options.
  3. To add a show/hide toggle to your content, you can use the [showhide] shortcode provided by the plugin. The shortcode takes two arguments: the text to show (enclosed in ) and the text to hide (enclosed in ). For example:
[showhide]
[show]Click here to reveal the hidden content.[/show]
[hide]This is the hidden content.[/hide]
[/showhide]

This will display a toggle link with the text “Click here to reveal the hidden content”. When the link is clicked, the hidden content will be revealed.

Note that this is just an example of how to use the WP-ShowHide plugin. You may need to consult the plugin’s documentation or support resources for more detailed instructions and information.

WP-show hide

Ultimate Blocks

Ultimate Blocks is a collection of custom blocks for the WordPress block editor (Gutenberg), designed to add additional functionality and design options to your WordPress site. The blocks included in Ultimate Blocks provide a range of features, including tables, testimonials, and call-to-action buttons. The blocks are designed to be easy to use and customize and can be added to any page or post on your site by simply inserting them into the block editor. Ultimate Blocks is a popular plugin among WordPress users and has received positive reviews for its feature-rich blocks and user-friendly interface.

Show-Hide / Collapse-Expand plugin for WordPress

As I mentioned earlier, there are many different show-hide/collapse-expand plugins available for WordPress. Some popular options include WP Collapse-O-Matic, Simple Show Hide, and Collapse-Pro. These plugins allow you to add show-hide/collapse-expand functionality to your WordPress site, allowing you to hide or show content on your pages and posts as needed.

To find the right plugin for your needs, you may want to do some research and read reviews to compare the features and functionality of different options. You can also try out different plugins on your site to see which ones work best for you. Keep in mind that not all plugins are compatible with all versions of WordPress, so be sure to check the plugin’s compatibility before installing it on your site.

 show-hide / collapse-expand WordPress.

Easy Accordion WordPress plugin:

An accordion is a user interface element that allows users to expand and collapse sections of content. The Easy Accordion plugin is a WordPress plugin that allows you to easily create accordion elements on your WordPress site. To use the plugin, you can follow these steps:

  1. Install and activate the Easy Accordion plugin on your WordPress site.
  2. Go to the plugin settings page, which can be found under Settings > Easy Accordion in the WordPress admin dashboard.
  3. Configure the plugin settings as desired. This may include options such as the accordion style, animation settings, and other customization options.
  4. Create a new accordion by going to the Easy Accordion page in the WordPress admin dashboard, and clicking on the “Add New” button.
  5. Enter a title for the accordion, and add the content for each accordion section using the editor provided.
  6. Publish the accordion by clicking on the “Publish” button.
  7. To display the accordion on your site, you can use the shortcode provided by the plugin, or you can use the Gutenberg block editor to add the accordion block to your page or post.

This is just an example of how to use the Easy Accordion plugin. You may need to consult the plugin’s documentation or support resources for more detailed instructions and information.

Easy Accordion plugin

Read more: How to Choose a hosting provider smartly?

How to get a post title in WordPress?

Get blog page URL in WordPress

If you are working on some kind of customizations or developing some kind of theme or plugin in thing in WordPress you must have to read this. here we will discuss how WordPress get blog page permalink works.

WordPress development is made easy for developers due to its built-in functions. If you want to know how to get the blog page URL in WordPress this article is for you.

Details of wordpress get blog page permalink function:

In simple words, this function is used to get the URL or permalinks of one WordPress post to another post.

Syntax:

get_blog_permalink( int $blog_id, int $post_id ): string

in PHP it is written as:

<?php echo get_permalink( get_option( 'page_for_posts' ) ); ?>

Parameters

$blog_id int Required

ID of the source blog.$post_id int Required

ID of the desired post.


Return

string The post’s permalink

Read more about this here.

Example:

function get_blog_permalink( $blog_id, $post_id ) {
	switch_to_blog( $blog_id );
	$link = get_permalink( $post_id );
	restore_current_blog();

	return $link;
}

Read more: How to Choose a hosting provider smartly?

How to get a post title in WordPress?

How to get post title in WordPress?

If you are working on some kind of customizations or developing some kind of theme or plugin in thing in WordPress you must have to read this. here we will discuss how WordPress get title works.

WordPress development is made easy for developers due to its built-in functions. If you want to know how to get title of any post or page on WordPress this article is for you.

Details of function:

In simple words, this function is used to get any title of the post or page inside the WordPress site. This is used in many customizations and core code.

Syntax:

get_the_title( int|WP_Post $post ): string

in PHP it is written as:

<?php echo get_the_title( $post_id ); ?>

WordPress get title Description

If the post is protected and the visitor is not an admin, then “Protected” will be inserted before the post title. If the post is private, then “Private” will be inserted before the post title.


Top ↑

Parameters

$post int|WP_Post Optional

Post ID or WP_Post object. The default is global $post.


Return

string

Read more here: Get title

Example:

function get_the_title( $post = 0 ) {
	$post = get_post( $post );

	$post_title = isset( $post->post_title ) ? $post->post_title : '';
	$post_id    = isset( $post->ID ) ? $post->ID : 0;

	if ( ! is_admin() ) {
		if ( ! empty( $post->post_password ) ) {

			/* translators: %s: Protected post title. */
			$prepend = __( 'Protected: %s' );

			/**
			 * Filters the text prepended to the post title for protected posts.
			 *
			 * The filter is only applied on the front end.
			 *
			 * @since 2.8.0
			 *
			 * @param string  $prepend Text displayed before the post title.
			 *                         Default 'Protected: %s'.
			 * @param WP_Post $post    Current post object.
			 */
			$protected_title_format = apply_filters( 'protected_title_format', $prepend, $post );

			$post_title = sprintf( $protected_title_format, $post_title );
		} elseif ( isset( $post->post_status ) && 'private' === $post->post_status ) {

			/* translators: %s: Private post title. */
			$prepend = __( 'Private: %s' );

			/**
			 * Filters the text prepended to the post title of private posts.
			 *
			 * The filter is only applied on the front end.
			 *
			 * @since 2.8.0
			 *
			 * @param string  $prepend Text displayed before the post title.
			 *                         Default 'Private: %s'.
			 * @param WP_Post $post    Current post object.
			 */
			$private_title_format = apply_filters( 'private_title_format', $prepend, $post );

			$post_title = sprintf( $private_title_format, $post_title );
		}
	}

	/**
	 * Filters the post title.
	 *
	 * @since 0.71
	 *
	 * @param string $post_title The post title.
	 * @param int    $post_id    The post ID.
	 */
	return apply_filters( 'the_title', $post_title, $post_id );
}

Read more: How to Choose a hosting provider smartly?

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

You can follow us on Facebook too.

How to exclude a specific page from LiteSpeed Cache

In some cases you need to exclude some pages from being cached from Litespeed. in this article, we are going to discuss How to exclude a specific page from LiteSpeed Cache?

Login to the Word Press dashboard, click on Lite Speed cache, and then click the Dashboard button.

After clicking the Dashboard button select the cache option.

When you click on the cache, you will see LiteSpeed Cache Settings. Select the Excludes button and paste the URL for the page you want to exclude.

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

You can follow us on Facebook too.

Also, read some Client-side errors.

How to resolve WordPress installation failed. error message: [404] in CyberPanel?

Many users faced WordPress installation error in CyberPanel as it is not working some time throwing installation failed. error message: [404]. In this article, I will tell you a few reasons and possible solutions for this issue.

WordPress installation error

Sometimes you want to install WordPress from the CyberPanel and it through this error and you are not able to install it. There are a few reasons for this.

WordPress installation error Reasons:

  1. Your CyberPanel installation goes well but may be there is no WP nCLi on your server.
  2. If you have allpied any kind of mysql optimizations may be after that also this function will not work.

Possible Solution:

  1. Update you cyberpanel to the latest version and it may be resolve the non WP CLi issue follow this article to update cyberpanel.
  2. If you want to check MySQL and dont know how to check just access your SSH and go to the /etc/my.cnf or /etc/mysql/my.cnf and paste the content in coment i will check if there is any optimizations or not.

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

You can follow us on Facebook too.

How to create a post in WordPress?

Create a post in WordPress is the first and the starting step in blogging and even all fields if you want to start a blogging website then this will be the first thing you need to do. Although to create a post in WordPress is a very easy and steps process.

For creating a post in WordPress user should follow these steps:

Step 1: login the site “WordPress Dashboard“.

Step 2: click the posts icon on the left side display in navigation menu.

Step 3: Four options will appear. So the user click Add new button on the Posts page for creating a new post.

Step 4: Enter the title in a title bar it will appear on the top of the post.

Step 5: After giving the title, type content in a content bar. Users can format the text of content using an editor, like users can bold italic and also change colors of text.

Step 6: The user can also add images. The user can add an image with the help of the “Add Media button”.

Step 6: when the user has entered the information in the posting user can click the publish button. Then the post is displayed on our website.

Step 7: User can also click on save draft to save the information if user does not want to publish his post publicly.

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

How to write a post in WordPress?

When you want to do some work with WordPress the first step is to write a blog post in WordPress. To start writing a post in WordPress is a very easy process. In this article, I am going to tell you how you can write a post in WordPress.

When someone new starts a new blog or any type of other site using WordPress. So you must have knowledge about creating and managing posts with WordPress. This is one of the cores and basic requirements of WordPress.

So before going to do anything else in WordPress you just have to know how to create a blog in WordPress. As blog or post always have a great impact on the site ranking, site SEO, and all.

Login to your WordPress:

First of all, you have to log in to your WordPress admin dashboard. Normally your WordPress admin dashboard access is on:

https://www.yourwebsit.com/wp-admin

if you have any custom login link for the WordPress admin dashboard you can visit that and provide the user name and password to log in.

Login to your WordPress:
Login to your WordPress:

Create a post in WordPress:

Once you logged in now you can see a lot of options in the left side menu of the WordPress dashboard.

Go to the Posts-> Add new Post option in the left menu.

Create a post in WordPress:
Create a post in WordPress

Once you click there this will redirect you to the posting page where you can write the post according to your choice and content.

Post

On this page, you can write the content on the main page, and on the right side, you can see a lot of options like some important are Categories, tags, featured images in the post tab.

You can add categories to your posts, tag, and also set featured images to your posts.

 Create a post in WordPress

Save post:

In WordPress, you can also make posts to draft and you can also publish them once.

But as you know one post needs many reviews so you have to save it to draft and maybe you have to preview it many times and after all, you can publish a zero error post. so these all buttons and options are present on the top of the right site on the posting page.

Save post:
Save post:

Here you can read How to log in to the Rainloop admin dashboard?

Read More: How to Change Upload limit On CyberPanel?

How to Change Upload limit On CyberPanel?

You can follow us on Facebook too.

Redis One-Click Install through CyberPanel

Do you know now from CyberPanel version 2.0.3 you can install Redis on your server using one click? Here we will tell you one-click Redis install through CyberPanel.

Now CyberPanel made the installation and use of Redis cache on your server very easy.

Redis is an open-source cache used to cache databases, and is used as a message broker. Nowadays it is very important to use cache and boost your website. CyberPanel helps you to do this.

One-Click Redis install Through CyberPanel:

Follow these steps to setup Redis on your server.

  1. Login to CyberPanel
  2. One-Click Redis Install
  3. Install Redis PHP extension
  4. Setup Redis on WordPress using LS Cache

Login to CyberPanel:

Login to your CyberPanel using the credentials. Follow the link with port 8090.

https://<Your_IP>:8090
CyberPanel

One-Click Redis Install:

To install Redis on your server you have to go to the Manage Services->Application -> Redis then you can see the install button there. Click that and your Redis installed.

https://<Your-IP>:8090/manageservices/manageApplications
Redis Install

Now your Redis is installed and you have to install PHP extension to run properly.

Install Redis PHP extension:

Now go to the PHP-> Install Extension Then you have to select PHP version for which you want to install Redis Extension. You can also follow this link.

https://<Your-IP>:8090/managephp/installExtensions
PHP Extension

Now search redis on the search bar and you can see redis PHP extension press the Install button and everything is good to go.

Redis

Setup Redis on WordPress using LS Cache:

Now it’s time to setup Redis on your WordPress site. We will tell you here how you can setup Redis on your WordPress site without any extra plugin. Ls cache plugin will all do for you. Let’s begin how to do.

  1. Go to the LiteSpeed Cache -> Cache option in the left menu
  2. Then go to the Object
  3. Turn on object Cache and set method to Redis
  4. Change port to 6379 and press save
  5. You can check here if the Redis extension and connection test are passed then it’s good to go.

Read more: How to create, delete and manage Child Domains in CyberPanel?

Follow US on Facebook / Twitter Instagram .

How to Install and Setup Wordfence Security Plugin in WordPress

Do you want to secure your website from hackers? You want a secure website? Do you want to install and setup Wordfence Security Plugin to make your website more secure?

If you need anything above here in this article you will get all this information.

Wordfence Security is the most popular WordPress Scanner and Firewall. Wordfence uses to scan, remove malware, firewall again attacks, IP securing, 2FA login, etc.

You have to follow these steps to install and setup Wordfence in WordPress:
  1. Install and Activate Wordfence
  2. Setup Firewall in Wordfence
  3. Scan your site from Wordfence
  4. Login Security Setup
  5. Other Security tools

Install Wordfence Plugin:

installation of Wordfence is just like any other WordPress Plugin. You can easily install Wordfence Plugin from the Plugin directory or you can download it from the Wordfence site and upload it.

Follow this How to install Plugin in WordPress?

After installation activate this Wordfence security plugin to configure it.

Install and Setup Wordfence Security Plugin
Install Wordfence Plugin

Once you completed the installation and check this privacy policy and terms link you can see the Dashboard of the Wordfence plugin by click on it from Wordfence -> Dashboard.

Wordfence Dashboard
Wordfence Dashboard

They guide you through these steps and you can follow these but follow another part of this article in order to understand better.

Setup Firewall in Wordfence:

Wordfence Firewall saves your website from malleolus access of the website. The firewall has general real-time security and secures your website from brute force attacks on your website.

The free version of the Firewall of the workforce does most of the things for you but in the premium version, you will get all the advanced features also.

Premium versions include Real-time IP blocklist, Real-time firewall rules, and malware defense.

The firewall has two-level f protection one is basic and the other one is advanced level protection. The basic level of protection covers the threads and attacks on the website but may miss some plugin and themes attacks. Advanced level covers all these.

On the Dashboard page of your Wordfence plugin, you can see the firewall percentage.

Wordfence plugin
Wordfence plugin

To configure your Wordfence firewall go to Wordfence->Firewall option.

configure your wordfence firewall
Configure your Wordfence firewall

Once you click the Optimize The Wordfence Firewall you will see a notice click Continue and you can see your firewall is successfully installed.

Firewall done
Done

You can also see extended mode is enabled. if you check your firewall performance is also increased.

Scan your site from Wordfence:

You can scan your website using the Wordfence security plugin. To scan your website go to the Wordfence->Scan->Start Scan.

Scan your site from Wordfence:
Scan your site from Wordfence

After clicking start scan you can see that your site starts scanning and now wordfence goes into the file of your WordPress site.

Basically, wordfence goes into the files of your websites and scans all the files present on your website directory. Note all changes that happen in that file and write those on your screen.

Wordfence tells you that which issue and changes of files are critical, which are ignorable, which files need to delete and which can be ignored.

The scanning process does not go into just one step it complete in a number of steps.

scanning process
scanning process

2FA Login Security Setup:

The coolest feature of worfence is that it has a Login security feaster also use this plugin you can set 2FA. Now your question is how to set up a 2FA login using wordfence security plugin?

To set 2FA login go to the Wordfence->Login->2FA scan code.

Login Security Setup

You can also go to settings and check for the other settings too like whom you want to 2FA for.

Other Security tools:

There are also other security tools like Live traffic, Whois Lookup, Import/Export Options, and Diagnostics.

These option also help user in security as well as performance.

Other Security tools:
Other Security tools

Security of your website is very important you have to secure your website no matter you use this plugin or use any other matter but the point is your site must be secure.

From this guide, How to Install and Setup Wordfence Security Plugin in WordPress you got a good idea to configure your Wordfence plugin with your website.

How to Install Node Js on Windows?

Follow US on Facebook / Twitter Instagram .

Factors Affecting WordPress website page Speed

Here in this article we are going to discuss Factors Affecting WordPress website page Speed.

Do you like websites which take some time to load? Do you want to visit again on site on which you wait for page to open?

I think no one like to wait for loading of slow sites. Users always want a quick response from the website. After clicking the link they don’t want to wait and waste their time.

Above is the user perspective now if we come to the website owner’s view, the owner never wants to lose his/her visitor from the site. But we know there are a large number of things which affect page speed and load of our website. We know it is not possible to list all but we mention a few things that are common for this.

Factors Affecting WordPress website page Speed
Factors Affecting WordPress website page Speed

What do we learn in this article?

  1. What is page load and speed?
  2. Why Page speed and load is important?
  3. Factors Affecting WordPress Website Loading Speed.
    1. Unoptimized images
    2. Irrelevant, extra, and outdated Plugins and themes
    3. Cache Plugin and its configurations.
    4. Extra and unoptimized CSS and JS.
    5. Hosting server
  4. How to check Page speed?
  5. How to solve the problems stated above?

What is page load time and speed?

Page speed is the loading speed for your page. It mean that how fast your page loads for your user. Acutely the time between the click by user and the view of page.

You can say that page speed is the page load time or time taken for the first bit. Site speed and page speed are two different things but sometimes we mixed both as one.

Now if we look at load time, Load time is the total time taken to download whole page and display it. When the whole content is there then we can say that this is the load time for our page.

Why Page speed and load is important?

As we know that now the internet is going fast and fast every day. With the increasing speed of the internet websites also need to be fast. As we no if your site is slow then there is no space for your website.

Now users want that website to load fast. So he can get his result as soon as possible. The important issue with having a slow website is that your users will often lose patience and leave. But this is not your user that wants this there are a lot of other important things for which your page speed is important.

Website ranking depends upon different things and these all relate to your page speed. If you want to rank high your site you need to improve your bounce rate, SEO, etc. Google as well as other search engines check all these things.

If your website is fast google always prefer fast site. In this way your SEO score will improve and when your SEO took you up visitor come and they will navigate between the page if your site is fast. This will improve your bounce rate.

Factors Affecting WordPress Website Loading Speed:

There are a large number of factor that affects your website page speed and make it slow here we will discuss the most common factor that affects the page speed. So stay with us to check these:

1: Unoptimized images

The most common mistake that people makes which cause there site slow Is the use of unoptimized images you create an image and upload it without optimizing it is not a good move. You must optimize your image before upload it on your site.

Use of unoptimized images is one of the common mistake made by most of us. We will also discuss how to overcome this issue later.

2: Irrelevant, extra, and outdated Plugins and themes

One of the big reason of getting site slow in WordPress user. The use of irrelevant, extra, outdated and pirated plugins. Sometime people see any new plugin and install it to test and they didn’t remove it, this thing slow down your site. There are also some user who like to use pirated plugin because they don’t want to pay for it that thing is very bad for their speed and security.

Many of us usually don’t like to update plugin scar of being destroy settings. More you have these thing more your site is slow.

When you install WordPress some Default themes also come with that. Most of the user never touch them and also never delete that make more load on server and cause site slow.

3: Cache Plugin and its configurations:

Use of cache plugin is very important to speed up your site. There are a lot of Cache plugin in market you can use them. There are a lot of free and also paid too. Use of cache plugin is is good but the important thing you have to configure it in right way. if you don’t know how to configure it then using this cause extra plugin only.

4: Extra and unoptimized CSS and JS:

The main function or propose to use cache plugin is to optimize extra and unoptimized CSS and JS. But where did it come. Acutely most of WordPress users like to buy ready made themes instant of making there own and all. They buy theme and plugin from any where and use it.

But the bad thing is that themes are not according to your requirement theme and plugin fulfill yours but also have a lot of extra and unoptimized JS and CSS files that caused the slow site issue.

6: Hosting server:

Chose of hosting is one of another important affect on site speed. If you have a big and high traffic site and you host it at a shared plan. then you cant get the required speed.

There are also other things which you need to keep in mind while selecting host. Like if your visitor are from India and your site is hosted in US then this is also a very bad move.

How to check Page speed?

There are a lot of ways to check Page speed of your website. Here we discuss some common page speed tools with are commonly used to check the performance of your website.

Google PageSpeed Insights:

Google PageSpeed Insights
Google PageSpeed Insights

Google PageSpeed Insights is one of the simple and most powerful tool to check the page speed of any website. It gives you both Mobile and Desktop page speed score. So you can easily check and compare the performance of your website.

This Google PageSpeed Insights also give you the issues details and this is very important for your SEO term.

GT Metrix:

GT Metrix:
GT Metrix

This is an other tool that helps you to check your page speed and helps you to improve you site speed and ranking. GTMatrix is also a great tool to check the performance of you site click here to visit GTMatix and check you page speed.

Pingdom Speed Test:

Pingdom Speed Test:
Pingdom Speed Test

Pingdom Speed Test is also a speed test tool. They says that they are cost effective and reliable uptime and performance monitoring provider for your website. They give you a kind of brief and detailed report about your website.

Web Page Test:

Web Page Test:
Web Page Test

This tool is not simple as other this a a tool which give you a detailed view about your website. But this tool worth look. This will give you information about the Security, First Byte, Keep-Live, Compress transfer, Cache static etc.

There are also many other tools but for now we will discuss only these.

How to solve the problems stated above?

AT the last of this article we will tell you how you can solve the problem stated above.

Optimize your Unoptimized images:

You have a lot of options to optimize your images, you can optimize you images using different ways like you can optimize before and after uploading we will give you name of some plugins and methods through which you can optimize your images before and after uploading to the site.

Optimize your images before upload:

You can optimize your images before uploading. This is one of the core factor from the factors affecting WordPress website page Speed.

The optimize your images there are few basic thing you have to take care of, Like always use JPG, webp, etc. versions of image files instant of using PNG.

This is a good and intelligent move to optimize images before uploading it on live site. You can optimize your Images before upload using differnt tools. I will state some of them here.

  1. Pixler Online Editor
  2. Adobe Photo Shop
  3. Image optimizer
  4. Tiny PNG
  5. Optimizilla

You can optimize your images before uploading using these tools and editors. there are large number of tutorials to do so. Go get any of these tools and optimize your image before upload.

Optimize your images before upload
Optimize your images before upload

Optimize Images Through Plugins:

Better move is you can upload optimize images but if you didn’t do that and after upload you fell that you have to optimize these so in this case you can now optimize your images using plugin.

Here I will mention some plugin through which you can easily optimize your images. Even you have old images and you want to optimize them.

  1. Smush
  2. Optimole
  3. ShortPixel Image Optimizer
  4. Ls Cache
  5. Imagify

Using these plugins you can easily optimize your images by just following some steps.

Optimize Images Through Plugins:
Optimize Images Through Plugins

Remove Irrelevant, extra, and outdated Plugins and themes:

This is one of the main reason and it is very easy to solve this issue.

Just need to login to your system and check how many plugins need Updates. Also check which are the inactive or extra plugins which you don’t need or without those you can easily do your work.

One of the best thing to remember in this section is to remove the default theme mostly people do not remove default theme and keep those.

GO to the admin dashboard and check the inactive plugins under PLUGIN->INSTALLED PLUGIN->INACTIVE.

PLUGIN->INSTALLED PLUGIN->INACTIVE.
PLUGIN->INSTALLED PLUGIN->INACTIVE

Cache Plugin and its configurations:

Now a days there are a lot of cache plugins which you can use to get a speed on your site but the question is how to use these plugins on your site.

I must say configuration of a cache plugin is an important and critical phase. Here are some popular cache plugins.

  1. Ls cache
  2. WP Rocket
  3. Auto Optimizer
  4. Flywheel

You can follow some of these guides to configure these cache plugins.

The Beginner’s Guide to LiteSpeed Cache for WordPress

Find the Best Settings for your Site

Cache Plugin and its configurations:
Cache Plugin and its configurations

Extra and unoptimized CSS and JS:

Using above plugins you can optimize extra CSS and JS but the question is where it came from. Extra CSS come in the Ready made themes so to avoid these better to use a custom theme that gives you the css and js that you needed.

Chose a Good Hosting server:

The best thing and the hard decision to make is the chose of good and reliable server.

If you have a big sized WordPress site and you bought a shared plan that is not a good move at all. There are some things which you need to take care of before buying a server.

  1. Your target location and server location
  2. Your site content and your server capacity
  3. Selection of Server providers
  4. Shared, VPS or dedicated server choice.

These are some steps and thing you need to take care of before doing and looking for speed. these are Factors Affecting WordPress website page Speed. And we also stated how you can remove Factors Affecting WordPress website page Speed.

How to add live chat on WordPress Website – Integrate Tawk.To Live Chat to WordPress

Follow US on Facebook / Twitter Instagram .