Programming

  • 8 {{ upvoteCount | shortNum }}

    Getting Syntax Error In this Code of 18 Lines (php)

    howudoin in Programming

    Here's the code: ------------------------------------------ <?php if (is_category()) { $this_category = get_category($cat); if (get_category_children($this_category->cat_ID) != "") { echo "<ul>"; wp_list_categories('orderby=id&depth=1&show_count= 0&title_li= &use_desc_for_title=1&child_of='.$this_category->cat_ID); echo "</ul>"; } } else { ?> <ul> <?php ... [read more]

  • 5 {{ upvoteCount | shortNum }}

    Please Check This 20 Lines Of PHP Code

    howudoin in Programming

    Ok, This one really had me pulling my hair, Here's the code --------------------------------------------------------------------- <?php if (is_category()) { $this_category = get_category($cat); if (get_category_children($this_category->cat_ID) != "") { echo "<ul>"; wp_list_categories('orderby=id&depth=1&show_count= 0&title_li= &use_desc_for_title=1&child_of='.$this_category->cat_ID); ... [read more]