Skip to content

Instantly share code, notes, and snippets.

View GuiguiWeb's full-sized avatar
🌍

Guillaume Douceron GuiguiWeb

🌍
View GitHub Profile
/**
* Register term fields
*/
add_action( 'init', 'register_vendor_custom_fields' );
function register_vendor_custom_fields() {
add_action( WC_PRODUCT_VENDORS_TAXONOMY . '_add_form_fields', 'add_vendor_custom_fields' );
add_action( WC_PRODUCT_VENDORS_TAXONOMY . '_edit_form_fields', 'edit_vendor_custom_fields', 10 );
add_action( 'edited_' . WC_PRODUCT_VENDORS_TAXONOMY, 'save_vendor_custom_fields' );
add_action( 'created_' . WC_PRODUCT_VENDORS_TAXONOMY, 'save_vendor_custom_fields' );
}
@GuiguiWeb
GuiguiWeb / git-command.md
Created November 29, 2017 14:37 — forked from aquelito/git-command.md
GIT - Ligne de commande principale

Github

Rappel

Ne pas oublier la base : l'aide en ligne de commande. Il s'agit de la meilleur documentation.

git help config
git help push
git help pull