Posts in Blog

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

How to connect SiteGround via SSH in Mac OS?

SiteGround uses key-based SSH authentication instead of plain username & password. To connect via SSH, follow these steps: First, you will need to generate an SSH key pair – a public key and a private key. Open up the Terminal by going to Applications > Utilities > Terminal…
Read More