Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add guidance for managing Performance feature plugins #1734

21 changes: 21 additions & 0 deletions plugins/performance-lab/includes/admin/plugins.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,27 @@ static function ( string $error_message ): string {
</div>
<div class="clear"></div>
</div>
<p>
westonruter marked this conversation as resolved.
Show resolved Hide resolved
<?php
$plugins_url = add_query_arg(
array(
's' => 'WordPress Performance Team',
'plugin_status' => 'all',
),
admin_url( 'plugins.php' )
);
echo wp_kses(
sprintf(
/* translators: %s is the URL to the plugins screen */
__( 'Performance features are installed as plugins. To update features or remove them, <a href="%s">manage them on the plugins screen</a>.', 'performance-lab' ),
esc_url( $plugins_url )
),
array(
'a' => array( 'href' => true ),
)
);
?>
</p>
felixarntz marked this conversation as resolved.
Show resolved Hide resolved
felixarntz marked this conversation as resolved.
Show resolved Hide resolved
ShyamGadde marked this conversation as resolved.
Show resolved Hide resolved
<?php
}

Expand Down
Loading