/**
  * Get accessor method for instance property.
  *
  * @return WP_Fix_Feed_Not_Well_Formed_Markup Instance of the class.
  */
 public static function get_instance()
 {
     if (null == self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }
コード例 #2
0
<?php

WP_Fix_Feed_Not_Well_Formed_Markup::get_instance();