Skip to content

Instantly share code, notes, and snippets.

@brasofilo
Created May 18, 2013 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save brasofilo/5605328 to your computer and use it in GitHub Desktop.
Save brasofilo/5605328 to your computer and use it in GitHub Desktop.
GlotPress - plugin to remove Google Translate links
<?php
class Glot_No_Google extends GP_Plugin {
function __construct() {
parent::__construct();
$this->add_action( 'gp_head' );
}
function gp_head() {
echo '<style type="text/css">.gtranslate {display:none}</style>';
}
}
GP::$plugins->glot_no_google = new Glot_No_Google;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment