Files
wordpress-skeleton/blog/wp-content/plugins/pushpress/pushpress.php
T
2010-03-03 12:59:55 -05:00

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( );