/**
 * Method to remove a category from the feed object.
 *
 * @param   string  $name  The name of the category to remove.
 *
 * @return  Feed
 *
 * @since   3.1.4
 */
public function removeCategory($name)
{
    unset($this->properties['categories'][$name]);
    return $this;
}