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: Post List
4 * Module Description: Display a customizable list of your latest posts anywhere on your site.
5 * Sort Order: 31
6 * Recommendation Order: 12
7 * First Introduced: 11.3
8 * Requires Connection: No
9 * Auto Activate: No
10 * Module Tags: Admin
11 * Feature: Appearance
12 * Additional Search Queries: post, admin, list
13 *
14 * @package automattic/jetpack
15 */
16
17if ( ! defined( 'ABSPATH' ) ) {
18    exit( 0 );
19}
20
21/**
22 * Initialize the post-list module.
23 */
24add_action( 'admin_init', array( '\Automattic\\Jetpack\\Post_List\\Post_List', 'configure' ) );