改wordpress左上角菜單

Home Forums 尹說 改wordpress左上角菜單

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #19723
    ejsoon
    Keymaster

    /* --- 2. 在第一個下拉選單中加入新項目 --- */
    // 'parent' => 'site-name' 會將它放到網站名稱下方的下拉清單中
    $wp_admin_bar->add_node(array(
    'id' => 'quick-media-list',
    'parent' => 'site-name', // 關鍵:這會讓它出現在第一個下拉選單
    'title' => 'Media', // 顯示文字

    如果想加all posts,要怎麼寫?

    #19737
    ejsoon
    Keymaster

    加posts

    直傳svg

    // 允許上傳 SVG 格式(不經過外掛過濾)
    add_filter('upload_mimes', function($mimes) {
    $mimes['svg'] = 'image/svg+xml';
    return $mimes;
    });

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.