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…
Web Developer's Tips and Articles
to enhance your learning and projects qualityAdvanced 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…
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,…
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…
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…
When developing on a local server, it can be helpful to enable access to your site or web application from other devices on the same local network. For example, this allows you to preview your site on a phone or tablet. In this article, I’ll guide you through configuring access…
When developing a website with the potential for posts in Cyrillic, you may encounter the issue of Cyrillic URLs. While having Cyrillic characters in a URL does not affect functionality, it can lead to aesthetically unpleasant results when sharing these links, for instance, in a messaging app. For example, instead…
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…
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…
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…