captain
-
Last updated on April 11th, 2026 by captain
What is HTTPS and How to Setup HTTPS in WordPress Site?
One of the most important features is to ensure that your WordPress website is secure and safe for those users who want to exchange their important information on your website while shopping or doing other stuff. Setting up your WordPress website to force the use of the most secure transaction system is not that difficult to implement, but it needs a lot of decision-making to enforce a secure transaction process for the user. You would have seen on some websites, their URLs starting with “HTTPS” like Facebook, Google, and many others. An “HTTPS” enabled website adds a security layer to the…
-
Last updated on April 11th, 2026 by captain
What is a cron job and how to implement it in WordPress?
What is a cron? A cron was first used in UNIX operating system to execute specific commands automatically on a specific time instead of executing them manually. In simple words “a cron is a time-based scheduler“. What is a WordPress Cron? A WordPress cron refers to “pseudo-cron system”, WordPres cron job is a scheduled job that runs on a given time automatically. Limitation of WordPress Cron: WordPress cron will only run if any user visits your WordPress website’s page/post. Then WordPress will check for any available crons and execute them. There are two types of crons in WordPress: A cron job may be of any type.…
-
Last updated on April 11th, 2026 by captain
What is a WordPress Plugin and How to Develop it?
WordPress is a flexible platform which provides developer to add extra functionality without changing the core of WordPress. To enhance the functionality of WordPress we need to write custom plugins. WordPress Plugins are just like add-ons, which uses the core functionality of WordPress and add custom functionality into it. In this article, we will look at what are WordPress plugins and how we can create one. What is a Plugin in WordPress? A plugin is a piece of custom code that extends the functionality of WordPress which already exists. It could be a single line of code or a bunch…
-
Last updated on June 18th, 2026 by captain
Is WP Rocket Still the Best WordPress Cache Plugin in 2026?
A slow website costs you valuable leads and conversions every second. Installing a dedicated caching plugin fixes this by caching static pages, instantly reducing server load times. While hundreds of speed tools crowd the market, the WP Rocket cache plugin remains the premier choice for non-technical users who need reliable, low-maintenance optimization. In this blog, I will analyze core features, pricing tiers, and setup complexity. This will help uncover what works out of the box and what requires manual configuration.
-
Last updated on April 14th, 2026 by captain
Make Author.php Include Custom Post Types
I was going through a strange issue where Author page was not showing the posts which belongs to Custom Post Types. After Googling, I found this article which shows how to include Custom Post Types for archives.php I got inspiration from above mentioned article snippet and wrote the following snippet to modify Author.php page to include Custom Post Types function wpbrigade_author_custom_post_types( $query ) { if( is_author() && empty( $query->query_vars[‘suppress_filters’] ) ) { $query->set( ‘post_type’, array( ‘post’, ‘my-custom-post-type-here’ )); return $query; } } add_filter( ‘pre_get_posts’, ‘wpbrigade_author_custom_post_types’ );




