概要
主な機能
ダッシュボードウィジェットを追加するために必要な主なツールは、wp_add_dashboard_widget()関数です。この関数の完全な説明はそのリンクにありますが、以下に簡単な概要を示します。
使用法
wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback, $callback_args );
$widget_id
: ウィジェットの識別スラッグ。これはCSSクラスおよびウィジェットの配列内のキーとして使用されます。$widget_name
: ウィジェットの見出しに表示される名前です。$callback
: ウィジェットの実際の内容を表示するために作成する関数の名前です。$control_callback
(オプション): ウィジェットオプションフォームの送信を処理し、フォーム要素を表示するために作成する関数の名前です。$callback_args
(オプション): コールバック関数の引数のセットです。
アクションフック
関数を実行するには、add_action()を介してアクションwp_dashboard_setupにフックする必要があります。ネットワーク管理ダッシュボードの場合は、フックwp_network_dashboard_setupを使用します。
/**
* Add a widget to the dashboard.
*
* This function is hooked into the 'wp_dashboard_setup' action below.
*/
function wporg_add_dashboard_widgets() {
// Add function here
}
add_action( 'wp_dashboard_setup', 'wporg_add_dashboard_widgets' );
ネットワークダッシュボード:
/**
* Add a widget to the network dashboard.
*
* This function is hooked into the 'wp_network_dashboard_setup' action below.
*/
function wporg_add_network_dashboard_widgets() {
// Add function here
}
add_action( 'wp_network_dashboard_setup', 'wporg_add_network_dashboard_widgets' );
例
基本的な使用法
/**
* Add a widget to the dashboard.
*
* This function is hooked into the 'wp_dashboard_setup' action below.
*/
function wporg_add_dashboard_widgets() {
wp_add_dashboard_widget(
'wporg_dashboard_widget', // Widget slug.
esc_html__( 'Example Dashboard Widget', 'wporg' ), // Title.
'wporg_dashboard_widget_render' // Display function.
);
}
add_action( 'wp_dashboard_setup', 'wporg_add_dashboard_widgets' );
/**
* Create the function to output the content of our Dashboard Widget.
*/
function wporg_dashboard_widget_render() {
// Display whatever you want to show.
esc_html_e( "Howdy! I'm a great Dashboard Widget.", "wporg" );
}
ウィジェットを上部に強制する
通常、プラグインのユーザーがダッシュボードウィジェットを好きな場所にドラッグして配置できるようにするべきです。現在、デフォルトのウィジェットを事前にソートする簡単なAPIの方法はなく、新しいウィジェットは常にリストの下部に配置されます。APIにソート機能が追加されるまで、この問題を回避するのは少し複雑です。
以下は、デフォルトのウィジェットの前にウィジェットを配置しようとするフック関数の例です。これは、メタボックスの内部配列を手動で変更し(ダッシュボードウィジェットはその一種です)、ウィジェットをリストの上部に配置して最初に表示されるようにします。
function wporg_add_dashboard_widgets() {
wp_add_dashboard_widget(
'wporg_dashboard_widget',
esc_html__( 'Example Dashboard Widget', 'wporg' ),
'wporg_dashboard_widget_function'
);
// Globalize the metaboxes array, this holds all the widgets for wp-admin.
global $wp_meta_boxes;
// Get the regular dashboard widgets array
// (which already has our new widget but appended at the end).
$default_dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
// Backup and delete our new dashboard widget from the end of the array.
$example_widget_backup = array( 'example_dashboard_widget' => $default_dashboard['example_dashboard_widget'] );
unset( $default_dashboard['example_dashboard_widget'] );
// Merge the two arrays together so our widget is at the beginning.
$sorted_dashboard = array_merge( $example_widget_backup, $default_dashboard );
// Save the sorted array back into the original metaboxes.
$wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
}
add_action( 'wp_dashboard_setup', 'wporg_add_dashboard_widgets' );
残念ながら、これはウィジェットの順序を変更したことがない人にしか機能しません。一度ユーザーが順序を変更すると、既存の設定がこれを上書きし、ウィジェットを上部に移動しなければならなくなります。
デフォルトのダッシュボードウィジェットを削除する
特にマルチユーザーブログでは、インターフェースからウィジェットを完全に削除することが有用な場合があります。各ユーザーは、デフォルトで、上部の画面オプションタブを使用して任意のウィジェットをオフにできますが、技術的でないユーザーが多い場合は、まったく見えない方が良いかもしれません。
ダッシュボードウィジェットを削除するには、remove_meta_box()関数を使用します。必要なパラメータについては、以下の例コードを参照してください。
これがダッシュボードのデフォルトウィジェットの名前です:
// Main column (left):
// Browser Update Required
$wp_meta_boxes['dashboard']['normal']['high']['dashboard_browser_nag'];
// PHP Update Required
$wp_meta_boxes['dashboard']['normal']['high']['dashboard_php_nag'];
// At a Glance
$wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now'];
// Right Now
$wp_meta_boxes['dashboard']['normal']['core']['network_dashboard_right_now'];
// Activity
$wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity'];
// Site Health Status
$wp_meta_boxes['dashboard']['normal']['core']['health_check_status'];
// Side Column (right):
// WordPress Events and News
$wp_meta_boxes['dashboard']['side']['core']['dashboard_primary'];
// Quick Draft, Your Recent Drafts
$wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press'];
以下は、QuickPressウィジェットを削除する関数の例です:
// Create the function to use in the action hook
function wporg_remove_dashboard_widget() {
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
}
// Hook into the 'wp_dashboard_setup' action to register our function
add_action( 'wp_dashboard_setup', 'wporg_remove_dashboard_widget' );
以下の例は、すべてのダッシュボードウィジェットを削除します:
function wporg_remove_all_dashboard_metaboxes() {
// Remove Welcome panel
remove_action( 'welcome_panel', 'wp_welcome_panel' );
// Remove the rest of the dashboard widgets
remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
remove_meta_box( 'health_check_status', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_activity', 'dashboard', 'normal');
}
add_action( 'wp_dashboard_setup', 'wporg_remove_all_dashboard_metaboxes' );
右側にウィジェットを追加する
この関数では、ウィジェットの配置を選択することはできず、自動的に「コア」に追加されます。これは左側です。しかし、右側に非常に簡単に配置することができます。
add_meta_box()関数をwp_add_dashboard_widget
の代わりに使用できます。単に$post_typeの代わりに「dashboard」を指定します。例えば:
add_meta_box(
'dashboard_widget_id',
esc_html__( 'Dashboard Widget Title', 'wporg' ),
'dashboard_widget',
'dashboard',
'side', 'high'
);
または、ウィジェットを作成した後:
function wporg_add_dashboard_widget() {
wp_add_dashboard_widget(
'wporg_dashboard_widget',
esc_html__( 'Example Dashboard Widget', 'wporg' ),
'wporg_dashboard_widget_function'
);
// Global the $wp_meta_boxes variable (this will allow us to alter the array).
global $wp_meta_boxes;
// Then we make a backup of your widget.
$wporg_widget = $wp_meta_boxes['dashboard']['normal']['core']['wporg_dashboard_widget'];
// We then unset that part of the array.
unset( $wp_meta_boxes['dashboard']['normal']['core']['wporg_dashboard_widget'] );
// Now we just add your widget back in.
$wp_meta_boxes['dashboard']['side']['core']['wporg_dashboard_widget'] = $wporg_widget;
}
add_action( 'wp_dashboard_setup', 'wporg_add_dashboard_widget' );
ダッシュボードでのRSSフィードの集約
ウィジェットでRSSを集約する必要がある場合は、/wp-admin/includes/dashboard.php
でキャッシュを使用して既存のプラグインがどのように設定されているかを確認してください。
ウィジェットオプション
WordPressは特定のウィジェットのオプションを取得するための組み込みの方法を提供していません。デフォルトでは、get_option( 'dashboard_widget_options' )
を使用してすべてのウィジェットオプションを取得し、返された配列を手動でフィルタリングする必要があります。このセクションでは、ウィジェットオプションの取得と設定を支援するために、テーマやプラグインに簡単に追加できるいくつかの関数を紹介します。
ウィジェットオプションの取得
この関数は、すべてのウィジェットオプション、または指定されたウィジェットのオプションのみを取得します:
/**
* Gets all widget options, or only options for a specified widget if a widget id is provided.
*
* @param string $widget_id Optional. If provided, will only get options for that widget.
* @return array An associative array
*/
function wporg_get_dashboard_widget_options( $widget_id = '' ) {
// Fetch ALL dashboard widget options from the db
$options = get_option( 'dashboard_widget_options' );
// If no widget is specified, return everything
if ( empty( $widget_id ) ) {
return $options;
}
// If we request a widget and it exists, return it
if ( isset( $options[$widget_id] ) ) {
return $options[$widget_id];
}
// Something went wrong...
return false;
}
単一ウィジェットオプションの取得
単一のオプション(テーマに出力するため)を簡単に取得したい場合、以下の関数がそれを容易にします。
この例は、前のウィジェットオプションの取得の例関数と一緒に使用する必要があります。
/**
* Gets one specific option for the specified widget.
*
* @param string $widget_id Widget ID.
* @param string $option Widget option.
* @param string $default Default option.
*
* @return string Returns single widget option.
*/
function wporg_get_dashboard_widget_option( $widget_id, $option, $default = NULL ) {
$options = wporg_get_dashboard_widget_options( $widget_id );
// If widget options don't exist, return false.
if ( ! $options ) {
return false;
}
// Otherwise fetch the option or use default
if ( isset( $options[$option] ) && ! empty( $options[$option] ) ) {
return $options[$option];
} else {
return ( isset( $default ) ) ? $default : false;
}
}
ウィジェットオプションの更新
この関数は、ウィジェットのすべてのオプションを簡単に更新するために使用できます。また、ウィジェットオプションを非破壊的に追加するためにも使用できます。$add_option引数をtrueに設定するだけで、既存のオプションを上書きしません(不足しているものは追加されます)。
/**
* Saves an array of options for a single dashboard widget to the database.
* Can also be used to define default values for a widget.
*
* @param string $widget_id The name of the widget being updated
* @param array $args An associative array of options being saved.
* @param bool $add_only Set to true if you don't want to override any existing options.
*/
function update_dashboard_widget_options( $widget_id , $args = array(), $add_only = false ) {
// Fetch ALL dashboard widget options from the db...
$options = get_option( 'dashboard_widget_options' );
// Get just our widget's options, or set empty array.
$widget_options = ( isset( $options[$widget_id] ) ) ? $options[$widget_id] : array();
if ( $add_only ) {
// Flesh out any missing options (existing ones overwrite new ones).
$options[$widget_id] = array_merge( $args, $widget_options );
} else {
// Merge new options with existing ones, and add it back to the widgets array.
$options[$widget_id] = array_merge( $widget_options, $args );
}
// Save the entire widgets array back to the db.
return update_option( 'dashboard_widget_options', $options );
}
関連情報
例のダッシュボードウィジェットを参照して、さらに多くの例を確認してください。