2016-12-14 7 views

答えて

-1
Here is the code you need to add into your theme functions file. 
// Replace Posts label as Articles in Admin Panel 

function change_post_menu_label() { 
    global $menu; 
    global $submenu; 
    $menu[5][0] = 'Articles'; 
    $submenu['edit.php'][5][0] = 'Articles'; 
    $submenu['edit.php'][10][0] = 'Add Articles'; 
    echo ''; 
} 
add_action('admin_menu', 'change_post_menu_label'); 
関連する問題