Skip to content

Instantly share code, notes, and snippets.

@jerome-toole
Created December 8, 2017 17:06
Show Gist options
  • Save jerome-toole/ac2b0e2f86729ebefffd811daf05cdc5 to your computer and use it in GitHub Desktop.
Save jerome-toole/ac2b0e2f86729ebefffd811daf05cdc5 to your computer and use it in GitHub Desktop.
Add 'Front Page' Item to Wordpress Admin Menu
function front_page_menu_item(){
$frontid = get_option('page_on_front');
add_menu_page('Front Page', 'Front Page', 'manage_options', '/post.php?post='.$frontid.'&action=edit', '', 'dashicons-welcome-write-blog', 4);
}
add_action('admin_menu', __NAMESPACE__ . '\\front_page_menu_item');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment