Skip to content

Instantly share code, notes, and snippets.

@ptasker
Created March 29, 2017 17:24
Show Gist options
  • Select an option

  • Save ptasker/39577469255baabbfd433a140ebf6b3e to your computer and use it in GitHub Desktop.

Select an option

Save ptasker/39577469255baabbfd433a140ebf6b3e to your computer and use it in GitHub Desktop.
Test plugin
<?php
/*
Plugin Name: Annoying Plugin
Plugin URI:
Description: This is not a plugin
Author: Pete T
Version: 1.0
Author URI:
*/
class annoying_plugin {
public function __construct() {
add_filter( 'admin_head', [ $this, 'foo' ] );
}
public function foo(){
echo "foo";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment