function agent($postid) {
global $wpdb;
$uid = get_current_user_id();
$wpdb->get_results( "SELECT iduser FROM post_counts WHERE idpost='" . $postid . "' AND iduser='" . $uid . "'");
if ($wpdb->num_rows < 1) {
... тря-ля-ля что нужно сделать ...
$wpdb->query("INSERT INTO post_counts (idpost, iduser) VALUES('" . $uid . "','" . $postid . "')");
} else {
... тра-ля-ля уже тут были ...
}
}