2013-08-24 32 views
0

我希望有人能夠向我解釋在WordPress導航菜單功能中「%1 $ s,%2 $ s,%3 $ s」字符的含義如下:這是什麼意思在WordPress菜單代碼

$defaults = array('menu' => '', 'container' => 'div', 'container_class' => '', 'container_id' => '', 'menu_class' => 'menu', 'menu_id' => '', 
    'echo' => true, 'fallback_cb' => 'wp_page_menu', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', 
    'depth' => 0, 'walker' => '', 'theme_location' => ''); 

謝謝你在前進,

牛逼

回答

1

$ items_wrap

(字符串)(可選)評爲格式S討論sprintf()表達式的參數。格式字符串通過編號令牌合併其他參數。 %1 $ s擴展爲'menu_id'參數的值,%2 $ s擴展爲'menu_class'參數的值,並且%3 $ s擴展爲列表項的值。如果格式字符串中省略了編號的標記,則菜單標記中將省略相關參數。 默認:%3 $ s

來源:http://codex.wordpress.org/Function_Reference/wp_nav_menu