Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * Module Name: Podcast
4 * Module Description: Publish, manage, and grow your podcast right from your site.
5 * Sort Order: 38
6 * Requires Connection: Yes
7 * Auto Activate: Yes
8 * Module Tags: Writing
9 * Feature: Writing
10 * Additional Search Queries: podcast, podcasts, podcasting, audio, episodes, rss, feed, distribution
11 *
12 * @package automattic/jetpack
13 */
14
15use Automattic\Jetpack\Podcast\Podcast;
16
17if ( ! defined( 'ABSPATH' ) ) {
18    exit( 0 );
19}
20
21// The package self-gates on the `jetpack_podcast_for_the_world` filter for
22// self-hosted sites, and the module itself is only listed when that filter is
23// true (see Jetpack::filter_available_modules_podcast()).
24Podcast::init();