wp-admin/imgに画像
Dにtori.php
ファンクションに
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | //管理メニュー追加 function test_menu_page() { $siteurl = get_option( 'siteurl' ); ?> <div class = "wrap" > <h2>マニュアル</h2> <?php include ( "tori.php" ); ?> </div> <?php } function test_admin_menu() { add_menu_page( 'マニュアル' , 'マニュアル' , 'read' , __FILE__ , 'test_menu_page' ); } add_action( 'admin_menu' , 'test_admin_menu' ); |