install_dashboard [ WordPress-Funktionen ]
install_dashboard ( Keine Parameter )
| Definiert in: |
|
| Codex |
Ähnliche Funktionen: install_themes_dashboard, wp_dashboard, install_blog, get_dashboard_url, install_network
Noch keine Beschreibung.
Quellcode
function install_dashboard() {
?>
<p><?php printf( __( 'Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the <a href="http://wordpress.org/extend/plugins/">WordPress Plugin Directory</a> or upload a plugin in .zip format via <a href="%s">this page</a>.' ), self_admin_url( 'plugin-install.php?tab=upload' ) ); ?></p>
<h4><?php _e('Search') ?></h4>
<?php install_search_form( false ); ?>
<h4><?php _e('Popular tags') ?></h4>
<p class="install-help"><?php _e('You may also browse based on the most popular tags in the Plugin Directory:') ?></p>
<?php
$api_tags = install_popular_tags();
echo '<p class="popular-tags">';
if ( is_wp_error($api_tags) ) {
echo $api_tags->get_error_message();
} else {
//Set up the tags in a way which can be interpreted by wp_generate_tag_cloud()
$tags = array();
foreach ( (array)$api_tags as $tag )
$tags[ $tag['name'] ] = (object) array(
'link' => esc_url( self_admin_url('plugin-install.php?tab=search&type=tag&s=' . urlencode($tag['name'])) ),
'name' => $tag['name'],
'id' => sanitize_title_with_dashes($tag['name']),
'count' => $tag['count'] );
echo wp_generate_tag_cloud($tags, array( 'single_text' => __('%s plugin'), 'multiple_text' => __('%s plugins') ) );
}
echo '</p><br class="clear" />';
}Beispiele [ wp-snippets.com ]
Top Google Suchergebnisse
- wp-admin/includes/plugin-install.php source - PHP Cross Reference ...
... '</p><br class="clear" />'; 111 } 112 add_action('install_plugins_dashboard', ' install_dashboard'); 113 114 /** 115 * Display search form for searching plugins.
xref.yoast.com - wp-admin/includes/plugin-install.php source
... '</p><br class="clear" />'; 110 } 111 add_action('install_plugins_dashboard', ' install_dashboard'); 112 113 /** 114 * Display search form for searching plugins.
phpxref.ftwr.co.uk - wpengine and install dashboard - WPMU Dev
trying to install the dashboard for your system but it won't copy over...is there a way to manually do this? I am using wpengine...
premium.wpmudev.org - One click plugin install (Dashboard) not working - WordPress
[resolved] One click plugin install (Dashboard) not working (6 posts). ohno- notagain. Member Posted 4 years ago #. Everytime I attempt to do the plugin install ...
wordpress.org
