Skip to content

Instantly share code, notes, and snippets.

View omusegad's full-sized avatar

Gad omusegad

View GitHub Profile
@omusegad
omusegad / pipenv_cheat_sheet.md
Created August 27, 2022 15:22 — forked from bradtraversy/pipenv_cheat_sheet.md
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell
@omusegad
omusegad / GET ALL CATEGORIES IN WOOCOMMERCE
Created May 22, 2018 11:18 — forked from OneStep21/GET ALL CATEGORIES IN WOOCOMMERCE
HOW TO GET ALL CATEGORIES , SUB-CATEGORIES AND PRODUCTS IN WOOCOMMERCE WORDPRESS PLUGIN ( This will list all the top level categories and subcategories under them hierarchically. do not use the inner query if you just want to display the top level categories. Style it as you like. )
<?php
$taxonomy = 'product_cat';
$orderby = 'name';
$show_count = 0; // 1 for yes, 0 for no
$pad_counts = 0; // 1 for yes, 0 for no
$hierarchical = 1; // 1 for yes, 0 for no
$title = '';
$empty = 0;