mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-05 23:50:19 +00:00
22 lines
510 B
PHP
Executable File
22 lines
510 B
PHP
Executable File
<?php
|
|
/*
|
|
Plugin Name: PuSHPress
|
|
Plugin URI:
|
|
Description: PubSubHubbub plugin for WordPress that includes the hub
|
|
Version: 0.1.2
|
|
Author: Joseph Scott
|
|
Author URI:
|
|
License: GPLv2
|
|
*/
|
|
require_once dirname( __FILE__ ) . '/class-pushpress.php';
|
|
require_once dirname( __FILE__ ) . '/send-ping.php';
|
|
|
|
define( 'PUSHPRESS_VERSION', '0.1.2' );
|
|
|
|
if ( !defined( 'PUSHPRESS_CLASS' ) )
|
|
define( 'PUSHPRESS_CLASS', 'PuSHPress' );
|
|
|
|
$pushpress_class = PUSHPRESS_CLASS;
|
|
$pushpress = new $pushpress_class( );
|
|
$pushpress->init( );
|