diff --git a/wp-admin/edit.php b/wp-admin/edit.php
index 59cb4f1..200da05 100644
a
|
b
|
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
311 | 311 | ?></h1> |
312 | 312 | |
313 | 313 | <?php |
| 314 | // Output post type description if we have one: |
| 315 | if ( property_exists( $post_type_object, 'description' ) && !empty( $post_type_object->description ) ) { |
| 316 | echo '<p class="page-title-description">' . esc_html( $post_type_object->description ) . '</p>'; |
| 317 | } |
| 318 | |
314 | 319 | // If we have a bulk message to issue: |
315 | 320 | $messages = array(); |
316 | 321 | foreach ( $bulk_counts as $message => $count ) { |