Esempio n. 1
0
/**
 * Load the main plugin object.
 *
 * @since 1.3.0
 *
 * @return object $simmer The singleton instance of Simmer.
 */
function Simmer()
{
    $simmer = Simmer::get_instance();
    return $simmer;
}
Esempio n. 2
0
 */
/**
 * Plugin Name: Simmer for Recipes
 * Plugin URI:  https://simmerwp.com
 * Description: A recipe publishing tool for WordPress.
 * Version:     1.3.8
 * Author:      Team Simmer
 * Author URI:  https://simmerwp.com/about/
 * License:     GPL-2.0+
 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain: simmer
 * Domain Path: /languages
 */
// If this file is called directly, bail.
if (!defined('WPINC')) {
    die;
}
/**
 * The base plugin file path (this file).
 *
 * @since 1.0.3
 * @var string SIMMER_PLUGIN_FILE The base plugin file path.
 */
define('SIMMER_PLUGIN_FILE', plugin_basename(__FILE__));
/**
 * Load the main Simmer class.
 */
require_once plugin_dir_path(__FILE__) . 'core/class-simmer.php';
// Instantiate Simmer.
Simmer::get_instance();
Esempio n. 3
0
 /**
  * Get the only instance of this class.
  *
  * @since 1.0.0
  *
  * @return object $_instance The only instance of this class.
  */
 public static function get_instance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }