1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43:
php de functie get_all_children ($list, $array) { $child_sql = „SELECTEER BINNEN VERSCHILLENDE wizard_posts.ID als identiteitskaart VAN wizard_posts WAAR wizard_posts.post_parent („“. $list. „“) EN wizard_posts.post_status = „publiceer““; $children = mysql_query ($child_sql); terwijl ($my_c = mysql_fetch_array ($children)){ $parent_check. = $my_c [„identiteitskaart“]. „,“; $my_exclude [„punten“] [$my_c [„identiteitskaart“]] = $my_c [„identiteitskaart“]; } als (mysql_num_rows ($children)! =0) { get_all_children ($parent_check, $my_exclude); } keer $my_exclude terug; } $my_exclude = serie ( „punten“ => serie (), „ouders“ => serie () ); $my_sql = „SELECTEER post_id als identiteitskaart, meta_value als waarde VAN wizard_postmeta WAAR meta_key='sitemap_exclude EN meta_value in („sluit“, „exclude_child“) uit“; $my_result = mysql_query ($my_sql); terwijl ($my_v = mysql_fetch_assoc ($my_result)){ als ($my_v [„waarde“] =='exclude_child') { $my_exclude [„punten“] [$my_v [„identiteitskaart“]] = $my_v [„identiteitskaart“]; $my_exclude [„ouders“] [$my_v [„identiteitskaart“]] = $my_v [„identiteitskaart“]; } anders { $my_exclude [„punten“] [$my_v [„identiteitskaart“]] = $my_v [„identiteitskaart“]; } } foreach ($my_exclude [„ouders“] als $parents) { $parent_list. = $parents. „,“; } get_all_children ($parent_list, $my_exclude); foreach ($my_exclude [„punten“] als $items) { $my_exclude_list. = $items. „,“; } echo „“. $my_exclude_list. „“; ? >
1: 2: 3:
de functie get_all_children ($list, &$array) {