/**
  * Get the associated PostCategory object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     PostCategory The associated PostCategory object.
  * @throws     PropelException
  */
 public function getPostCategory(PropelPDO $con = null)
 {
     if ($this->aPostCategory === null && ($this->category_id !== "" && $this->category_id !== null)) {
         $this->aPostCategory = PostCategoryPeer::retrieveByPk($this->category_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aPostCategory->addPostCategoryRelations($this);
         		 */
     }
     return $this->aPostCategory;
 }