您当前的位置:首页 > TAG信息列表 > get-children

  • 来自多个父母的孩子术语?

    时间:2016-03-24

    我正在使用同位素过滤自定义的帖子类型。但我只想要两个特定父母的孩子分类法。我可以很好地为单亲工作,但我不知道如何修改数组以允许双亲。$terms = get_terms(\'speight_plans\', array(\'parent\' => 16)); // you can use any taxonomy, instead of just \'category\' $count = count($terms); //How many are they?

  • 为什么返回的第一个类别会被回显两次?

    时间:2016-08-18

    我有一个叫做菜单项的类别(类别id 19)和两个子类别墨西哥玉米饼和汉堡。为什么玉米饼会被重复两次?我买了玉米饼,玉米饼汉堡。while (have_posts()) : the_post(); foreach((get_the_category()) as $childcat) { if (cat_is_ancestor_of(19, $childcat)) { echo $childcat->cat_name;

  • 列出具有指定ID的页面的父级或祖父级的所有帖子

    时间:2016-10-03

    我在页面模板中使用以下代码<?php $args=array( \'post_parent\' => 27641, \'post_type\' => \'page\', ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($

  • 从GET_CHILD数组中获取一个特定值

    时间:2016-10-18

    我有一个问题要解决。下面是Dokan插件创建的Woocommerce订单及其子订单的get\\u子订单数组,我正在尝试将其与另一个插件集成我需要的是获取属于特定卖家(post\\u作者)的子订单(子post ID)。所以我得到的是:父post ID-$预订->交易\\u ID-订单IDpost\\u作者-$卖家\\u ID-返回卖家ID$sub_orders = get_children( array( \'post_parent\' => $reservation->t

  • 按随机顺序列出子页

    时间:2016-12-14

    我目前正在使用一个插件,为我的网站创建一个“思洛”结构。它创建了一个侧边栏,其中包含父页面列表,后跟子页面。它只允许我按创建顺序显示子页面。我想有随机顺序列出的子页面,这是一种可能性吗?示例:Pool Removal Contractors -Alabama -Arizona -Arkansas 我在此处找到以下代码:function wpb_list_child_pages() { global $post; if