Php Ocean wp
-
Hello, can someone help me?
I used the following php code to hide the page title. But I would like to hide it only on the cell phone. How can I do this? THANK!// Disable page title on single posts
function disable_title( $return ) {if ( is_singular( ‘post’) ) {
$return = false;
}// Return
return $return;}
add_filter( ‘ocean_display_page_header’, ‘disable_title’ );But I would like to hide it only on the cell phone. How can I do this?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Php Ocean wp’ is closed to new replies.