Exemplo n.º 1
0
 /**
  * Loads a single instance of EDD Reviews
  *
  * This follows the PHP singleton design pattern.
  *
  * Use this function like you would a global variable, except without needing
  * to declare the global.
  *
  * @example <?php $edd_reviews = edd_reviews(); ?>
  *
  * @since 1.0
  *
  * @see EDD_Reviews::get_instance()
  *
  * @return object Returns an instance of the EDD_Reviews class
  */
 function edd_reviews()
 {
     return EDD_Reviews::get_instance();
 }