on Dec 19th, 2008Simpelt wordpress plugin för att dölja dashboarden
Var idag på jobbet i behov av att dölja dashboarden för användare, detta utan att in och pilla i kärnan. Resultatet efter 3 minuters intensivt kodande kan ni själva beskåda nedan:
<?php
/*
Plugin Name: Dashboard Hider
Description: This plugins hides the motherfucking dashboard, yeah.
Author: Alexander Nyquist
Version: 1.0
*/
/*
Plugin Name: Dashboard Hider
Description: This plugins hides the motherfucking dashboard, yeah.
Author: Alexander Nyquist
Version: 1.0
*/
function hide_dashboard()
{
global $parent_file;
if($parent_file === ‘index.php’)
{
?>
<script type="text/javascript">
document.location.href = ‘edit-pages.php’;
</script>
<meta http-equiv="refresh" content="0;url=edit-pages.php">
<?php
}
}
add_action(‘admin_head’, ‘hide_dashboard’);
?>