hanuman6
11/21/2013 - 10:50 AM

管理画面にカスタム項目を追加

管理画面にカスタム項目を追加

add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
 
function my_custom_dashboard_widgets() {
global $wp_meta_boxes;
 
wp_add_dashboard_widget('custom_help_widget', '操作編集ガイド', 'dashboard_text');
}
function dashboard_text() {
echo '<p>操作について不明点がありましたら下記マニュアルをご参照ください</p><p>・<a href="http://tomato.hyogo.jp/sample/izumi/wp-content/themes/izumi/file/wp-manual1.pdf" target="_blank">基本編集マニュアル<a><br>・<a href="http://tomato.hyogo.jp/sample/izumi/wp-content/themes/izumi/file/wp-manual2.pdf" target="_blank">応用編集マニュアル<a></p>';
}