Web Developer's Tips and Articles

to enhance your learning and projects quality

Developers and website administrators often encounter situations where the Advanced Custom Fields (ACF) or Secure Custom Fields (SCF) shortcode returns empty output when attempting to display field values. This article outlines common causes and solutions for this issue. First, verify that the ACF/SCF shortcode feature is enabled. Starting with ACF…

Posted on April 11, 2025 in Guides, WordPress

WP-CLI (WordPress Command Line Interface) is a powerful tool for managing WordPress sites directly from the terminal. It simplifies developer workflows for tasks like creating new WordPress installations, managing language packs, modifying user role permissions, and much more. This guide walks you through installing WP-CLI using cPanel. Log in to…

Posted on March 26, 2025 in Guides, WordPress

Modern website and web application development involves managing a vast number of critical aspects that can sometimes be overlooked after prolonged development. To simplify the project delivery process, I’d like to share a checklist that I personally use. This checklist ensures that your project is delivered in excellent technical condition…

Posted on February 11, 2025 in Guides, Tips

Advanced Custom Fields (ACF) and Secure Custom Fields (SCF) offer a fantastic feature: the ability to select a location using the Google Maps API. However, to use this API, you need a Google Cloud API key with the Maps JavaScript API and Geocoding API services enabled. A common question arises: How to connect the API…

Posted on February 5, 2025 in Guides

PHP provides a convenient API for working with date and time. If you need to retrieve the current date, you can simply use the date() function, specifying the desired format as an argument. Alternatively, in WordPress, you can use the wp_date() function, which applies the site’s current time zone to the date. In programming,…

Posted on February 4, 2025 in Tips

Running a modern online store requires familiarity with various technologies that allow you to integrate your business with different platforms. One such technology is creating a Yandex Market YML feed, which enables you to synchronize your website’s catalog with Yandex services, such as maps and others. While there are ready-made…

Posted on February 1, 2025 in Guides, WordPress

WordPress Multisite is an invaluable tool for creating multilingual websites. However, if you’ve ever worked on SEO for such websites, you may have noticed a significant issue: when Multisite operates in subdirectory mode, WordPress fails to correctly generate the robots.txt file. Specifically, it does not include sitemaps for subsites, which…

Posted on January 27, 2025 in Guides, WordPress

During the development of a website layout or template, it’s easy to overlook small typos in texts or labels. Spellchecking does not work on standard HTML elements by default, which makes it challenging to identify errors quickly. However, with a simple script, you can activate spellchecking directly in the browser…

Posted on December 16, 2024 in Tips