diff --git wp-admin/includes/template.php wp-admin/includes/template-new.php
index b89a899..642b5ad 100644
|
old
|
new
|
function _post_states( $post ) { |
| 1899 | 1899 | } |
| 1900 | 1900 | |
| 1901 | 1901 | /** |
| | 1902 | * Adds suffix 'Privacy Policy' for Privacy page. |
| | 1903 | */ |
| | 1904 | if ( '' !== get_option( 'wp_page_for_privacy_policy' ) ) { |
| | 1905 | if( intval( get_option( 'wp_page_for_privacy_policy' ) ) === $post->ID ) { |
| | 1906 | $post_states['wp_page_for_privacy_policy'] = __('Privacy Policy'); |
| | 1907 | } |
| | 1908 | } |
| | 1909 | |
| | 1910 | /** |
| 1902 | 1911 | * Filters the default post display states used in the posts list table. |
| 1903 | 1912 | * |
| 1904 | 1913 | * @since 2.8.0 |