21 lines
446 B
PHP
21 lines
446 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
|
|
function redirect_to_backend() {
|
|
if( !is_admin() ) {
|
|
wp_redirect( site_url('wp-admin') );
|
|
exit();
|
|
}
|
|
}
|
|
add_action( 'init', 'redirect_to_backend' );
|
|
?>
|