メモ。
<?php function add_page_menu_page() { $siteurl = 'post.php?post=xx&action=edit'; //xxに投稿idを挿入 } function add_page_admin_menu() { add_menu_page( '固定ページ表示名', '固定ページ表示名', 'read', 'post.php?post=xx&action=edit'); //xxに投稿idを挿入 } add_action( 'admin_menu', 'add_page_admin_menu' ); add_action( 'admin_head', 'custom_post_type_icon' ); function custom_post_type_icon() { ?> <style> #toplevel_page_post-post-95-action-edit .dashicons-admin-generic::before { content: "\f109";!important; //アイコンも変更 } </style> <?php