Skip to content

Instantly share code, notes, and snippets.

View elvishp2006's full-sized avatar
🏠
Working from home!

Elvis Henrique Pereira elvishp2006

🏠
Working from home!
View GitHub Profile
@elvishp2006
elvishp2006 / nest.js
Created April 29, 2020 15:23
Create nested collection.
// Data Set
// One top level comment
const comments = [{
id: 1,
parent_id: null
}, {
id: 2,
parent_id: 1
}, {
id: 3,
@elvishp2006
elvishp2006 / wp-taxonomy-dropdown.php
Created August 22, 2018 12:23 — forked from eduardozulian/wp-taxonomy-dropdown.php
Callback function for 'meta_box_cb' argument inside register_taxonomy() that replaces the regular checkboxes with a plain dropdown list
<?php
/**
* Callback function for taxonomy meta boxes
*
* A simple callback function for 'meta_box_cb' argument
* inside register_taxonomy() that replaces the regular
* checkboxes with a plain dropdown list
*
* @param [type] $post [description]
* @param [type] $box [description]
@elvishp2006
elvishp2006 / Enconding.php
Created June 7, 2016 15:01
Useful enconding functions
<?php
/**
* @author "Sebastián Grignoli" <grignoli@framework2.com.ar>
* @package Encoding
* @version 1.1
* @link http://www.framework2.com.ar/dzone/forceUTF8-es/
* @example http://www.framework2.com.ar/dzone/forceUTF8-es/
*/
class Encoding {