Ocho Rios, Jamaica Through My Lens

Ocho Rios is alive in a different way.

From the sound of waves meeting the shore to the rhythm of music moving through the streets, there is an energy here that invites you to slow down and take it all in.

But beyond the beauty of the water and landscape, it’s the people who leave the deepest impression.Warm smiles. Easy conversations. A sense of openness that makes you feel welcomed, even as a visitor.

Ocho Rios is not just a destination; it’s an experience shaped by rhythm, culture, and connection.

// Disable comments and trackbacks everywhere function disable_all_comments() { // Disable comments add_filter('comments_open', '__return_false', 20, 2); add_filter('pings_open', '__return_false', 20, 2); // Hide existing comments add_filter('comments_array', '__return_empty_array', 10, 2); } add_action('init', 'disable_all_comments'); // Remove comments-related admin menu function remove_comments_menu() { remove_menu_page('edit-comments.php'); } add_action('admin_menu', 'remove_comments_menu'); // Remove comment support from posts/pages function remove_comment_support() { $post_types = get_post_types(); foreach ($post_types as $post_type) { if (post_type_supports($post_type, 'comments')) { remove_post_type_support($post_type, 'comments'); } if (post_type_supports($post_type, 'trackbacks')) { remove_post_type_support($post_type, 'trackbacks'); } } } add_action('init', 'remove_comment_support');