/**
  * Gets instance of class.
  *
  * @return WP_Recipe_Cooking_Methods_Taxonomy Instance of the class.
  */
 public static function get_instance()
 {
     if (null == self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }