Với cấu trúc giao diện của oceanwp, bạn có thể tắt nó thủ công ở trong mỗi bài viết, nhưng như thế sẽ mất thời gian hơn.
Thêm có vào functions.php của giao diện
// 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_heading', 'disable_title' );
