/**
  * put unite gallery function
  */
 function putUniteGallery($galleryAlias, $catID = null, $putIn = null)
 {
     if (!empty($putIn)) {
         $isPutInMatch = UniteFunctionsWPUG::isPutInStringMatch($putIn);
         if ($isPutInMatch == false) {
             return false;
         }
     }
     $content = HelperUG::outputGallery($galleryAlias, $catID);
     echo $content;
 }