18 lines
341 B
PHP
18 lines
341 B
PHP
<?php
|
|
/*
|
|
* Plugin Name: Econgood CiviCRM Integration
|
|
* Description: Handle custom Econgood CIVI and Wordpress modifications
|
|
* Version: 1.0.0
|
|
* Author: Gerrit Elbrink
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
//redirect to wp-admin
|
|
if ( ! is_admin() ) {
|
|
wp_redirect( admin_url() );
|
|
exit;
|
|
}
|
|
?>
|