mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 21:08:44 +01:00
Privacy: on the Privacy Settings screen change view
to preview
when a draft page is selected for the privacy policy.
Props garrett-eclipse, desrosj. Merges [43374] to the 4.9 branch. Fixes #44131. git-svn-id: https://develop.svn.wordpress.org/branches/4.9@43453 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
bff94e95e5
commit
a54f180b6f
@ -155,8 +155,13 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
<p class="tools-privacy-edit"><strong>
|
||||
<?php
|
||||
|
||||
/* translators: 1: URL to edit page, 2: URL to view page */
|
||||
printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy page content.' ), $edit_href, $view_href );
|
||||
if ( 'publish' === get_post_status( $privacy_policy_page_id ) ) {
|
||||
/* translators: 1: URL to edit page, 2: URL to view page */
|
||||
printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy page content.' ), $edit_href, $view_href );
|
||||
} else {
|
||||
/* translators: 1: URL to edit page, 2: URL to preview page */
|
||||
printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">preview</a> your privacy policy page content.' ), $edit_href, $view_href );
|
||||
}
|
||||
|
||||
?>
|
||||
</strong></p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user