Simple iPhone detection, disable hiding of action links for iPhone
git-svn-id: https://develop.svn.wordpress.org/trunk@10010 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1d302ecb8c
commit
2a613b3821
@ -71,9 +71,12 @@ do_action('admin_print_scripts');
|
|||||||
do_action("admin_head-$hook_suffix");
|
do_action("admin_head-$hook_suffix");
|
||||||
do_action('admin_head');
|
do_action('admin_head');
|
||||||
|
|
||||||
?>
|
if ( $is_iphone ) { ?>
|
||||||
|
<style type="text/css">.row-actions{visibility:visible;}</style>
|
||||||
|
<?php } ?>
|
||||||
</head>
|
</head>
|
||||||
<body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>">
|
<body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>">
|
||||||
|
|
||||||
<div id="wpwrap">
|
<div id="wpwrap">
|
||||||
<div id="wpcontent">
|
<div id="wpcontent">
|
||||||
<div id="wphead">
|
<div id="wphead">
|
||||||
|
@ -34,13 +34,13 @@ if ( is_admin() ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Simple browser detection
|
// Simple browser detection
|
||||||
$is_lynx = $is_gecko = $is_winIE = $is_macIE = $is_opera = $is_NS4 = $is_safari = $is_chrome = false;
|
$is_lynx = $is_gecko = $is_winIE = $is_macIE = $is_opera = $is_NS4 = $is_safari = $is_chrome = $is_iphone = false;
|
||||||
|
|
||||||
if (strpos($_SERVER['HTTP_USER_AGENT'], 'Lynx') !== false) {
|
if (strpos($_SERVER['HTTP_USER_AGENT'], 'Lynx') !== false) {
|
||||||
$is_lynx = true;
|
$is_lynx = true;
|
||||||
} elseif ( strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'chrome') !== false ) {
|
} elseif ( strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'chrome') !== false ) {
|
||||||
$is_chrome = true;
|
$is_chrome = true;
|
||||||
} elseif ( strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'webkit') !== false ) {
|
} elseif ( strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'safari') !== false ) {
|
||||||
$is_safari = true;
|
$is_safari = true;
|
||||||
} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false) {
|
} elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') !== false) {
|
||||||
$is_gecko = true;
|
$is_gecko = true;
|
||||||
@ -54,6 +54,9 @@ if (strpos($_SERVER['HTTP_USER_AGENT'], 'Lynx') !== false) {
|
|||||||
$is_NS4 = true;
|
$is_NS4 = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( $is_safari && strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'mobile') !== false )
|
||||||
|
$is_iphone = true;
|
||||||
|
|
||||||
$is_IE = ( $is_macIE || $is_winIE );
|
$is_IE = ( $is_macIE || $is_winIE );
|
||||||
|
|
||||||
// Server detection
|
// Server detection
|
||||||
|
Loading…
Reference in New Issue
Block a user