隐藏指向不包含任何内容的页面的链接

时间:2011-07-14 作者:user4490

有可能吗?当在管理面板中向页面添加内容时,会显示指向该页面的页面链接。

1 个回复
最合适的回答,由SO网友:Chip Bennett 整理而成

我想你需要内爆(“,”,$excluded\\u pages)才能工作,

$excluded_pages = array();
$all_pages = get_pages();
foreach ( $all_pages as $the_page ) {
    if ( \'\' == $the_page->post_content ) {
        $excluded_pages[] = $the_page->ID;
    }
}
wp_list_pages( array(
    \'exclude\' => implode(\',\',$excluded_pages)
) );

EDIT

结束

相关推荐

How to add pages to feed?

我想在我的RSS提要中包含页面。无论何时添加或编辑页面,我都希望它显示在提要中。我似乎在默认WordPress安装或默认(二十十)主题中找不到任何设置。我怎样才能做到这一点?我正在使用最新版本的WordPress(3.1.3)。