我有以下一段代码,它创建了许多帖子的下拉列表。
<?php
$mypostype = get_posts('post_type=rentals');
if($mypostype) : ?>
<form action="" id="myform">
<label for="myselect">Rentals</label>
<select id="myselect" name="select_post_type" onChange='document.location.href=this.options[this.selectedIndex].value;'>
<?php foreach ( $mypostype as $mypost ) : ?>
<option value="?rentals=<?php echo $mypost->post_name; ?>"><?php echo $mypost->post_title; ?></option>
<?php endforeach; ?>
</select>
</form>
<?php endif ?>
除了一件事之外,它的工作非常出色,那就是能够将默认值添加到没有链接到任何页面的下拉列表中,例如“选择租赁”之类的一些文本。
如果有人能解释如何添加这个值,那就太好了。
提前感谢您的时间和帮助。