3
我想在菜單上做一個下拉列表,不知道如何使用PHP,所有的網頁或教程,我以前見過讓它從管理和與預先製作模板,所以我停滯不前,因爲我不知道如何使它,我敢肯定,它可能是這麼簡單,我希望有人可以幫助我,我使用bootstrap,如果這有助於用WordPress下載列表
,這是讓菜單我使用
<?php
$args = array(
'theme_location' => 'header-menu',
'container' => 'nav',
'container_class' => 'menu-sitio'
);
wp_nav_menu($args);
?>
,但在我的WordPress管理菜單中也有這樣的事情
,並在我的templete看起來像
,我想知道如何使它像一個下拉菜單
我剛纔在我的HTML是這個
<header>
<nav class="navegacion">
<div class="container">
<div class="row">
<div class="col-md-4">
logo
</div>
<div class="col-md-8">
<?php
$args = array(
'theme_location' => 'header-menu',
'container' => 'nav',
'container_class' => 'menu-sitio'
);
wp_nav_menu($args);
?>
</div>
</div>
</div>
</nav>
</header>
你能爲你的下拉列表中提供您當前的標記? – cwanjt
@cwanjt對不起,但我不知道你是什麼意思的標記,我最新的WordPress,只是我的代碼是我粘貼在我的問題 –
您的HTML代碼。 – cwanjt