Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created June 20, 2013 06:51
Show Gist options
  • Save annalinneajohansson/5820740 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/5820740 to your computer and use it in GitHub Desktop.
Base for WordPress plugin
<?php
/*
Plugin Name: PLUGIN NAME
Plugin URI:
Description: PLUGIN DESCRIPTION
Version: 1
Author: Hippies
Author URI: http://hippies.se/
**************************************************************************
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*************************************************************************
*/
function this_plugin_init() {
load_plugin_textdomain( 'this-plugin', false, dirname( plugin_basename( __FILE__ ) ) );
# load_plugin_textdomain( 'this-plugin', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
}
add_action('plugins_loaded', 'this_plugin_init');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment