WordPress
Admin Dashboard Widgets
Zoeken…
Invoering
Met een beheerdersdashboardwidget kunt u alle soorten informatie weergeven op het beheerdersdashboard. Je kunt meerdere widgets maken als je wilt. U kunt de code toevoegen aan de functies.php van uw thema of aan uw plug-in.
Syntaxis
- add cialis ($ tag, $ function_to_add, $ priority, $ geaccepteerd_args);
- wp_add_dashboard_widget ($ widget_id, $ widget_name, $ callback, $ control_callback, $ callback_args);
parameters
Parameter | Details |
---|---|
$ tag | ( string vereist ) Naam van de actie waarbij $ function_to_add is gekoppeld |
$ function_to_add | ( opvraagbaar ) Naam van de functie die u wilt oproepen. |
$ prioriteit | ( int optioneel ) Plaats van de functieaanroep in alle functies (standaard = 10) |
$ accepted_args | ( int optioneel ) Aantal parameters dat de functie accepteert (standaard = 1) |
$ WIDGET_ID | ( string vereist ) Unieke naaktslak voor uw widget |
$ WIDGET_NAME | ( string vereist ) Naam van uw widget (weergegeven in het hoofd) |
$ callback | ( opvraagbaar ) Naam van de functie die de inhoud van uw widget toont |
$ control_callback | ( opvraagbaar optioneel ) Naam van de functie die de formulieren voor widgetopties afhandelt |
$ callback_args | ( array optioneel ) Parameters van de functie $ control_callback |
Eenvoudige widget (geeft tekst weer)
Hiermee wordt een eenvoudige widget toegevoegd die slechts een klein bericht weergeeft.
add_action('wp_dashboard_setup', 'register_my_dashboard_widgets');
function register_my_dashboard_widgets() {
wp_add_dashboard_widget('myInfo_widget', 'Important Information', 'display_infoWidget');
}
function display_infoWidget() {
echo '<p>At the first of february this site gets a new design.
Therefore is wont be available this day. To see the current progress you can visit
<a href="http://www.justanexample.com" >this site</a></p>';
}
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow