How to

  • Learn how to convert your images to SVG coding.

    Converting a <img> tag’s src attribute to an SVG (Scalable Vector Graphics) format can have several benefits in certain situations. SVG is a vector graphics format that uses XML to describe two-dimensional vector graphics, allowing for images to be scaled without loss of quality. This article is not about simply converting an image to an…

  • How to implement a taxonomy filter for your WordPress project

    To implement a taxonomy filter for your WordPress project, follow these steps: Make sure to replace ‘your_custom_post_type’ with the actual name of your custom post type. This code retrieves the terms from the taxonomies using the get_terms() function and then displays them as checkboxes in the form. In this code, we retrieve the selected terms…

  • Simple pure CSS loading to your pages

    đź‘‹ Hello all! In this tutorial, I will illustrate the steps to design a CSS loading animation that bounces. HTML Add a class name called “loading” to <div> tag that wraps 3 divs. You can add any class name on your own. Each div from the parent will receive a style on the next CSS.…

  • How to implement a React Dark Mode using state and localStorage

    Learn how to add a dark mode to your project using these steps.

  • How to: Search keywords with Vue 3

    Front-end code with vue3 to construct a search based on keywords, which can be categories, tags, or even any words of an array

  • 7 React coding exercises to your interview.

    This post is designed for beginners to React, as well as folks who’re learning the main concepts. I think I can help you figure this out.

  • Increase Media File Maximum Upload Size in WordPress

    Those who like to upload good quality images, videos, or even upload a plugin, sometimes need to increase the default upload size of WordPress platform. Well, the tip of this post is about it…. There are some ways to do that. One or more ways may fit you. I say that because as a WordPress…