| 1 | $future_posts = wp_dashboard_recent_posts(
|
|---|
| 2 | apply_filters( 'dashboard_activity_widget_future_posts', array(
|
|---|
| 3 | 'max' => 5,
|
|---|
| 4 | 'status' => 'future',
|
|---|
| 5 | 'order' => 'ASC',
|
|---|
| 6 | 'title' => __( 'Publishing Soon' ),
|
|---|
| 7 | 'id' => 'future-posts',
|
|---|
| 8 | ) )
|
|---|
| 9 | );
|
|---|
| 10 |
|
|---|
| 11 | $recent_posts = wp_dashboard_recent_posts(
|
|---|
| 12 | apply_filters( 'dashboard_activity_widget_recent_posts', array(
|
|---|
| 13 | 'max' => 5,
|
|---|
| 14 | 'status' => 'publish',
|
|---|
| 15 | 'order' => 'DESC',
|
|---|
| 16 | 'title' => __( 'Recently Published' ),
|
|---|
| 17 | 'id' => 'published-posts',
|
|---|
| 18 | ) )
|
|---|
| 19 | );
|
|---|
| 20 |
|
|---|