Skip to content

Instantly share code, notes, and snippets.

@codezenic
Last active June 2, 2018 18:07
Show Gist options
  • Select an option

  • Save codezenic/a014da62f41cd0f6520c4f658cbc7cd5 to your computer and use it in GitHub Desktop.

Select an option

Save codezenic/a014da62f41cd0f6520c4f658cbc7cd5 to your computer and use it in GitHub Desktop.
<?php
add_action( 'admin_menu', 'admin_menu_olustur' ); // admin_menu eylemine menümüzü dahil ediyoruz
function admin_menu_olustur() {
$baslik = 'Kan Themes Menü'; // Sayfanın başlığı
$menu = 'Kan Themes'; // Menü adı
$menu_url = 'kanthemes'; // Menü URL'si örneğin xxx.com/wp-admin/admin.php?page=kanthemes
$menu_function = 'menu_icerik_function'; // Menü içeriğiniz
$favicon = ''.get_template_directory_uri().'/assets/img/favicon.png'; // Favicon yolu
add_menu_page( $baslik, $menu, 'manage_options', $menu_url, $menu_function, $favicon, 60 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment