Tribe__Events__Linked_Posts::__construct( Tribe__Cache|null $cache = null )
Constructor!
Contents
Parameters
- $cache
-
(Tribe__Cache|null) (Optional)
Default value: null
Source
File: src/Tribe/Linked_Posts.php
public function __construct( Tribe__Cache $cache = null ) {
$this->cache = null !== $cache ? $cache : tribe( 'cache' );
$this->main = Tribe__Events__Main::instance();
$this->register_default_linked_post_types();
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
}