Skip to content

Instantly share code, notes, and snippets.

@fjarrett
Last active April 28, 2017 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fjarrett/c440f8cfd2a65ed461215406e4e848a2 to your computer and use it in GitHub Desktop.
Save fjarrett/c440f8cfd2a65ed461215406e4e848a2 to your computer and use it in GitHub Desktop.
Foo Plugin Boilerplate
=== Foo Plugin ===
Contributors: your-wp-org-username
Tags: posts, blogging
Requires at least: 4.7
Tested up to: 4.7
Stable tag: 1.0.0
License: GPL-2.0
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Lorem ipsum dolor sit amet, consectetur adipiscing elit!
== Description ==
@TODO
== Screenshots ==
1. @TODO
== Frequently Asked Questions ==
= Sample question? =
Sample answer!
== Changelog ==
= 1.0.0 - April 28, 2017 =
* Initial release
<?php
/**
* Plugin Name: Foo Plugin
* Description: Lorem ipsum dolor sit amet, consectetur adipiscing elit!
* Version: 1.0.0
* Author: Your Name
* Author URI: https://yourwebsite.com
* Text Domain: foo-plugin
* Domain Path: /languages
* License: GPL-2.0
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
load_plugin_textdomain( 'foo-plugin', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
// @TODO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment