2010-08-25 14 views

Répondre

2

Je l'ai compris. Mettez ce code dans le wp-content/themes/your-theme-name/functions.php

function new_link_display() { 
    echo "Echo html code for the page"; 
} 
function new_link_page() { 
    if (function_exists('add_submenu_page')) 
     add_submenu_page('index.php', __('New Like Label'), __('New Link Label'), 'manage_options', 'new-link-display', 'new_link_display'); 
} 
add_action('admin_menu', 'new_link_page');