gpt4 book ai didi

wordpress - 页面显示wordpress中的所有页面内容

转载 作者:行者123 更新时间:2023-12-03 06:45:21 24 4
gpt4 key购买 nike

我已显示当前页面中的所有页面内容,但不是当前页面内容要显示,因此下面的代码为我提供了所有页面内容,但我如何过滤它?

谢谢。

 $pages = get_pages(); 
foreach ($pages as $page_data) {
$content = apply_filters('the_content', $page_data->post_content);
$title = $page_data->post_title;
echo $content;
}

最佳答案

尝试此代码:它将通过获取当前页面的 ID 来排除当前页面。

<?php                                   
$args = array(
'post_type' => 'page',
'numberposts' => -1,
'sort_order' => 'ASC',
'sort_column' => 'post_title',
'post_status' => 'publish',
'exclude' => get_the_ID()
);
//$allpages = get_pages($args ); ?>
<?php wp_list_pages( $args ); ?>

关于wordpress - 页面显示wordpress中的所有页面内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16961318/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com