show label on post if commented by current user
-
Hi, i need your help please;;;
i wan to show label if just post (custum post type) are commented by current logged user:<?php
$args = array(
‘post_type’ => ‘custom-post-type’,
‘user_id’ => $current_user->ID
);
$number = get_comments_number($args);if($number == 0) {
echo ‘no comments’;
} else {
?><span class=”label”>commented</span>
<?php } ?>thank you so much in advance
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘show label on post if commented by current user’ is closed to new replies.