This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hide editor on specific pages. | |
* | |
*/ | |
add_action( 'admin_init', 'hide_editor' ); | |
function hide_editor() { | |
// Get the Post ID. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// modified by Carlos Santín | |
// Based on gist rest-mongo.go by : Narate Ketram | |
// twitter @kabalism | |
package main | |
import ( | |
"github.com/ant0ine/go-json-rest/rest" | |
"gopkg.in/mgo.v2" | |
"gopkg.in/mgo.v2/bson" |