Making WordPress.org


Ignore:
Timestamp:
12/21/2023 05:40:09 AM (9 months ago)
Author:
tellyworth
Message:

Plugin Dir: Add Preview links for moderators in plugin queue

This adds private Playground Preview links for the plugin review team to more easily test newly submitted plugins that have not yet been published.

Plugins are loaded with plugin-check active.

See #7380.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-plugin-posts.php

    r13034 r13076  
    712712
    713713            printf(
    714                 '<a href="%1$s">%2$s</a><br>%3$s</li>',
     714                '<a href="%1$s">%2$s</a><br>%3$s<br>(<a href="%4$s" target="_blank">preview</a>)</li>',
    715715                esc_url( $url ),
    716716                esc_html( $name ),
    717                 esc_html( $zip_size )
     717                esc_html( $zip_size ),
     718                esc_url( Template::preview_link_zip( $post->post_name, $zip_file->ID ) )
    718719            );
    719720        }
Note: See TracChangeset for help on using the changeset viewer.