How to Add Page Link in WordPress with Page ID
If your page ID is 15, use the following format:
If your page ID is 15, use the following format:
Today we’re going to discuss how to make an iMovie which is an audio file with an image background, using iPhone’s Voice Memo app and a photo. Summary To quickly make an iMovie with an image overlay over a large audio file, drag the image overlay out to 30 seconds or 1 minute, then duplicate …
Which laptop should you use as a developer? The short answer that I currently am at is Mac. Differences I’ve Noticed When Switching from PC to Mac The Good Mac has some outstanding features over Windows. Here are those that I’ve noticed. Faster Processing The MacBook Pro with the M1 chip seemed to have a …
It is sometimes possible to modify plugin functions without editing the plugin file directly. It is poor practice to directly edit plugin files, because the edits are overwritten on plugin updates. If the plugin was written well using WordPress hooks, then we are in luck and can modify the functions. I was reading that in …
How to Edit a Variable/Function in a Plugin Using WordPress Hooks via functions.php ⚒ Read More »
When building a custom WordPress API endpoint to pull data from your WordPress site, you can pass query parameters into your URL or at the end of your slug to act as variables in your PHP API functions (in the format “?parameter-key=parameter-value”). (Query parameters may be referred to as arguments, or could be confused to …
How to Use Query Parameters in Your WordPress PHP REST API Route/Endpoint ⚡️ Read More »
SUMMARY: If you zip the folder containing your WordPress files, and download the zip file instead of the folder, the download time will be reduced from several hours to 10 minutes (vs. using FTP to download the WP files). ? You can use either cPanel file manager or SSH This guide doesn’t cover backing up …
How to Backup WordPress Site Files With 10 Minute Download Time (Using Zip) Read More »
The ternary (?) and logical AND (&&) operators in JavaScript can be used in place of an if…else statement, and can give you cleaner code. Here is a preview of how we will use it: See the video I recorded for this here! ▶️ Let’s look at the full example. First, consider the below function …