diff --git a/youtube_dl/extractor/pornhub.py b/youtube_dl/extractor/pornhub.py
index 529f3f7119f..a50b6260cbb 100644
--- a/youtube_dl/extractor/pornhub.py
+++ b/youtube_dl/extractor/pornhub.py
@@ -346,9 +346,9 @@ def add_video_url(video_url):
view_count = self._extract_count(
r'([\d,\.]+) [Vv]iews', webpage, 'view')
like_count = self._extract_count(
- r'([\d,\.]+)', webpage, 'like')
+ r']+class="votesUp"[^>]*>([\d,\.]+)', webpage, 'like')
dislike_count = self._extract_count(
- r'([\d,\.]+)', webpage, 'dislike')
+ r']+class="votesDown"[^>]*>([\d,\.]+)', webpage, 'dislike')
comment_count = self._extract_count(
r'All Comments\s*\(([\d,.]+)\)', webpage, 'comment')