Media: Change link text when attachment pages disabled.

When attachment pages are disabled, change the links from "View Attachment Page" to "View Media File".

Follow-up to [56657], [56658].

Props joedolson, ironprogrammer, oglekler.
Fixes #57913.
Built from https://develop.svn.wordpress.org/trunk@56711


git-svn-id: http://core.svn.wordpress.org/trunk@56223 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
hellofromTonya 2023-09-26 14:45:23 +00:00
parent 04f631f232
commit 61003dc0e7
3 changed files with 6 additions and 3 deletions

View File

@ -557,7 +557,10 @@ function wp_print_media_templates() {
<div class="actions"> <div class="actions">
<# if ( data.link ) { #> <# if ( data.link ) { #>
<a class="view-attachment" href="{{ data.link }}"><?php _e( 'View attachment page' ); ?></a> <?php
$view_media_text = ( '1' === get_option( 'wp_attachment_pages_enabled' ) ) ? __( 'View attachment page' ) : __( 'View media file' );
?>
<a class="view-attachment" href="{{ data.link }}"><?php echo $view_media_text; ?></a>
<# } #> <# } #>
<# if ( data.can.save ) { #> <# if ( data.can.save ) { #>
<# if ( data.link ) { #> <# if ( data.link ) { #>

View File

@ -77,7 +77,7 @@ function create_initial_post_types() {
'name_admin_bar' => _x( 'Media', 'add new from admin bar' ), 'name_admin_bar' => _x( 'Media', 'add new from admin bar' ),
'add_new' => __( 'Add New Media File' ), 'add_new' => __( 'Add New Media File' ),
'edit_item' => __( 'Edit Media' ), 'edit_item' => __( 'Edit Media' ),
'view_item' => __( 'View Attachment Page' ), 'view_item' => ( '1' === get_option( 'wp_attachment_pages_enabled' ) ) ? __( 'View Attachment Page' ) : __( 'View Media File' ),
'attributes' => __( 'Attachment Attributes' ), 'attributes' => __( 'Attachment Attributes' ),
), ),
'public' => true, 'public' => true,

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.4-alpha-56710'; $wp_version = '6.4-alpha-56711';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.