Web Developer's Tips and Articles

to enhance your learning and projects quality

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

When uploading an image through the WordPress media library, the system automatically generates several versions of the image in various resolutions. This ensures high performance by displaying the most appropriate image size for different contexts. As a result, files like the following are created: It may seem that the WordPress…

Posted on December 12, 2024 in Tips, WordPress

One of the clear trends in modern web development is the emergence of solutions that enable the implementation of familiar interface elements using native functions. A prime example of such an element is the accordion, often used for creating FAQs. In this article, I want to share a piece of…

Posted on December 11, 2024 in Tips