Posts in Web Development

Introduction to GA, GA4, GSC, GTM

GA – Universal Analytics Universal Analytics refers to the previous generation of Google Analytics for measuring website traffic. If you set up Google Analytics for your website prior to October 14, 2020, you probably created a Universal Analytics property. GA4 – Google Analytics 4 Google Analytics 4 (formerly known as…
Read More

How to Create Archives for Custom Taxonomies in WordPress

Step 1: 1. Creating a Custom Post Type To create a custom post type, add the following code in your theme’s functions.php file add_action('init', 'create_post_type'); function create_post_type() { register_post_type( 'project', array( 'labels' => array( 'name' => __('Projects'), 'singular_name' => __('Project'), 'all_items' => __('All Projects') ), 'public' => true,…
Read More