2018-08-21 13:17:07 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2018-09-19 15:16:41 +00:00
|
|
|
Plugin Name: Pterotype
|
2018-08-21 13:17:07 +00:00
|
|
|
*/
|
2018-08-23 02:07:06 +00:00
|
|
|
require_once plugin_dir_path( __FILE__ ) . 'inc/init.php';
|
2018-08-21 13:17:07 +00:00
|
|
|
|
2018-09-23 23:29:20 +00:00
|
|
|
define( 'PTEROTYPE_VERSION', '0.0.3' );
|
2018-09-19 15:47:51 +00:00
|
|
|
|
2018-09-19 15:16:41 +00:00
|
|
|
function pterotype_init() {
|
|
|
|
do_action( 'pterotype_init' );
|
2018-08-23 02:07:06 +00:00
|
|
|
}
|
|
|
|
|
2018-09-19 21:44:21 +00:00
|
|
|
do_action( 'pterotype_load' );
|
|
|
|
|
2018-09-19 15:16:41 +00:00
|
|
|
register_activation_hook( __FILE__, 'pterotype_init');
|
2018-08-21 13:17:07 +00:00
|
|
|
?>
|