| 1 |
<?php |
| 2 |
/** |
| 3 |
* Module Name: Post List |
| 4 |
* Module Description: Display extra information alongside each post in your dashboard’s Posts screen. |
| 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 |
|
| 17 |
/** |
| 18 |
* Initialize the post-list module. |
| 19 |
*/ |
| 20 |
add_action( 'admin_init', array( '\Automattic\\Jetpack\\Post_List\\Post_List', 'configure' ) ); |
| 21 |
|