1854 | | $rows .= "\t<li>" . wp_post_revision_title_expanded( $revision ) . "</li>\n"; |
| 1854 | $rows .= "\t<li>" . wp_post_revision_title_expanded( $revision ) . |
| 1855 | |
| 1856 | /** |
| 1857 | * Filter the actions available in the revisions list meta box. |
| 1858 | * |
| 1859 | * @since 4.4.0 |
| 1860 | * |
| 1861 | * @param string $actions The available actions (HTML) for each revision in the list. |
| 1862 | * @param int $revision The revision id. |
| 1863 | * @param int $post_id The revision's parent post id. |
| 1864 | */ |
| 1865 | apply_filters( 'wp_post_revision_actions', '', $revision, $post_id ) . |
| 1866 | "</li>\n"; |