我在侧边栏中使用wp\\u list\\u页面,对我来说效果很好,我只想添加新功能,它似乎没有在codex上列出,或者我不知道如何使用它。
$args = array(
\'child_of\' => 284,
\'post_type\' => \'page\',
\'sort_order\' => \'ASC\',
\'sort_column\' => \'post_date\',
\'title_li\' => \'\',
);
?>
<div id="#sidebar">
<ul>
<?php wp_list_pages( $args ); ?>
</ul>
</div>
这是我的CSS,正如你所看到的,我得到了带有一些填充的背景色。
#sidebar li {
font-size: .75em;
padding: 10px;
margin: 0 0 5px 0;
background: #f18c21;
color: white;
所以我的想法是,li上的唯一文本获得了链接,但我想做的是将整个li部分链接到页面。有什么办法吗?