dscizpq790832708 2018-10-31 06:38
浏览 223
已采纳

Wordpress Post__not_在通过变量提供时不起作用

I have created a function and passing dynamically the comma separated values to wp_args. When i echo variable i get the exact as needed and passing statci gies result but while passing variable name, I do not get results.

$excludepages1 = "12,14";
$excludepages2 = "'".implode("','", explode(",", $excludepages1))."'";
$excludepages = str_replace('"', '', $excludepages2); 

Now If i echo $excludepages I get '12','14' But when i pass here

$children = get_posts( array(
        'post_type' =>'page',
        'posts_per_page' =>-1,
        'post_parent' => $post_id,
        'orderby' => 'menu_order',
        'order' => 'ASC',
        'post__not_in' => array($excludepages)));

I do not get any result and if instead of variable i pass '12','14', I get results, Can you please help?

  • 写回答

3条回答 默认 最新

  • douleijiang8111 2018-10-31 06:58
    关注

    Ref: https://developer.wordpress.org/reference/functions/get_posts/

    $excludepages1 = "12,14";
    $excludepages = explode(",", $excludepages1);
    

    An exploded array can be used directly.

    "exclude" param is suggested in the docs. So, I used instead of "post__not_in".

    $children = get_posts( array(
                    'post_type' =>'page',
                    'posts_per_page' =>-1,
                    'post_parent' => $post_id,
                    'orderby' => 'menu_order',
                    'order' => 'ASC',
                    'exclude' => $excludepages)
                );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog