WP_Plugins_List_Table::no_items()

In this article

Source

public function no_items() {
	global $plugins;

	if ( ! empty( $_REQUEST['s'] ) ) {
		$s = esc_html( urldecode( wp_unslash( $_REQUEST['s'] ) ) );

		/* translators: %s: Plugin search term. */
		printf( __( 'No plugins found for: %s.' ), '<strong>' . $s . '</strong>' );

		// We assume that somebody who can install plugins in multisite is experienced enough to not need this helper link.
		if ( ! is_multisite() && current_user_can( 'install_plugins' ) ) {
			echo ' <a href="' . esc_url( admin_url( 'plugin-install.php?tab=search&s=' . urlencode( $s ) ) ) . '">' . __( 'Search for plugins in the WordPress Plugin Directory.' ) . '</a>';
		}
	} elseif ( ! empty( $plugins['all'] ) ) {
		_e( 'No plugins found.' );
	} else {
		_e( 'No plugins are currently available.' );
	}
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.