Bu şekilde mi?
add_action('admin_menu', 'yonlendir');
function yonlendir() {
if( current_user_can('manage_options')) {
$ekran = get_current_screen();
if( $ekran->post_type == 'post' && is_edit_page() ) {
wp_redirect(admin_url('/index.php', 'http'), 301);
}
}
}
?>
eğer buşekildeyse şu hatayı vermekte Notice: Trying to get property of non-object in C:\Program Files\EasyPHP-5.3.9\www\emi\wp-content\themes\biztob\functions.php on line 104
104 satırda da bu var : if( $ekran->post_type == 'post' && is_edit_page() ) {