首页    >    新闻资讯    >   下拉菜单显示日志

下拉菜单显示日志

在你的模板主题中添加这段代码,就能常见一个下拉菜单,显示你所有的日志,喜欢下拉菜单形式的站长朋友应该对这个比较感兴趣。当然显示的数字自己可以调节,更改代码中的 $args array.参数-1就可以实现.

<form action="<? bloginfo('url'); ?>" method="get">
<select name="page_id" id="page_id">
<?php
global $post;
$args = array( 'numberposts' => -1);
$posts = get_posts($args);
foreach( $posts as $post ) : setup_postdata($post); ?>
    <option value="<? echo $post->ID; ?>"><?php the_title(); ?></option>
<?php endforeach; ?>
</select>
<input type="submit" name="submit" value="view" />
</form>

分类:新闻资讯

标签:, ,

* 版权声明:作者WordPress啦! 转载请注明出处。