Example #1
0
 function _postStickTags(Post $post)
 {
     $postTags = PostTag::postTags($post);
     if (count($postTags) <= 0) {
         return;
     }
     return implode(',', $postTags);
 }