display_plugins_table
Display plugin content based on plugin list.
Description
display_plugins_table();
Usage
if ( !function_exists( 'display_plugins_table' ) ) { require_once ABSPATH . '/wp-admin/includes/plugin-install.php'; } // NOTICE! Understand what this does before running. $result = display_plugins_table();
Defined (1)
The function is defined in the following location(s).
- /wp-admin/includes/plugin-install.php
- function display_plugins_table() {
- global $wp_list_table;
- switch ( current_filter() ) {
- case 'install_plugins_favorites' :
- if ( empty( $_GET['user'] ) && ! get_user_option( 'wporg_favorites' ) ) {
- return;
- }
- break;
- case 'install_plugins_recommended' :
- echo '<p>' . __( 'These suggestions are based on the plugins you and other users have installed.' ) . '</p>';
- break;
- case 'install_plugins_beta' :
- printf(
- '<p>' . __( 'You are using a development version of WordPress. These feature plugins are also under development. <a href="%s">Learn more</a>.' ) . '</p>',
- 'https://make.wordpress.org/core/handbook/about/release-cycle/features-as-plugins/'
- );
- break;
- }
- ?>
- <form id="plugin-filter" method="post">
- <?php $wp_list_table->display(); ?>
- </form>
- <?php