-
·
Reach more people with your presentation slides, speaker notes and videos
Let your slides be minimalistic, and speaker notes have more details. Also make a video of the same topic and share it to reach a wider audience,
-
·
Person to Follow – Colby Fayock
Colby can make any boring tech topic interesting through his tutorials. Thanks to the YouTube recommendation engine for recommending one of his tutorials. I was impressed with the way he explained and taught stuff. Follow along the commit It was my first time to see tech tutorials that had a public repo and you can…
-
·
How to check the current request context in WordPress?
The wp-context package allows you to determine the current request’s context easily.
-
·
State Of The Word 2023 Data Liberation
Focusing on migration tools is the need of the hour. Find the first-party WordPress migration guides here.
-
·
Perseverance – Lessons from WC Udaipur 2023
WordCamps are fun. The experience and insights that I get from WordCamp are priceless. The one thing I learned from WC Udaipur was perseverance.
-
·
WordPress SVN Authentication realm
WordPress SVN repository expects the WP.org username and password for authentication. I got this prompt when I tried to push my changes to SVN. At first, the username was wrong, so I left the password empty and hit enter. SVN asked me to enter my username this time, so I did, and it worked fine.
-
·
Get the size of a file with wp_filesize
WordPress 6.0 introduced the wp_filesize method. It is a wrapper of the core PHP function filesize() and returns the size as an integer. It also has filters for filtering the size before and after executing the filesize() method. $size = filesize(‘/path/image.png’); // before 6.0 $size = wp_filesize(‘/path/image.png’); // after 6.0 If you encounter the following…
-
·
Get started with a Passwordless login for your WordPress site
Passwordless login is a convenient and secure alternative to traditional password-based authentication
-
·
WordPress Security: How To Scan Your Website For Free?
Keeping your WordPress site secure involves a series of steps. Let the security scan be on your regular maintenance tasks. For Non-Coders Site Health WordPress’ in-built site health page provides you with a comprehensive list of your website’s health. Just like your health checkup, which will provide you the information about blood pressure, sugar levels,…