Skip to content

Instantly share code, notes, and snippets.

View guirto's full-sized avatar

Victor Rodriguez guirto

View GitHub Profile
@ningunaparte
ningunaparte / d3.locale.ES.js
Created April 22, 2015 14:26
How to format D3.js dates and numbers to spanish - Localizar al español fechas y números
// https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.js
// SAMPLE https://jsfiddle.net/ningunaparte/9gm68vmn/
var nowDate = new Date();
// ES LOCATION
// d3.locale Spanish Spain / Español
// https://github.com/mbostock/d3/wiki/Localization
var es_ES = {
@justintadlock
justintadlock / register-post-type.php
Last active October 22, 2023 05:55
Help file when registering post types.
<?php
# Register custom post types on the 'init' hook.
add_action( 'init', 'my_register_post_types' );
/**
* Registers post types needed by the plugin.
*
* @since 1.0.0
* @access public