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 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记