• Resolved vinuel

    (@vinuel)


    Hello,
    I’ve found this little piece of code and it’s exactly what I was looking for.
    Now, can anyone help me to get the titles of the posts as links
    and
    to order the posts and subcategory titles as it is usually possible with posts.
    I tried but I’m not so good in coding …

    Here I’ve found the code:
    http://codex.wordpress.org/User:Siddharta1337/subcategoriespostsList

    and that’s the code:

    <ul>
     <?php
      $categories=  get_categories('child_of=6');  /// Parent Category number
      //echo  count($categories) . "<br />";
      foreach ($categories as $cat) {
     	$var = $cat->cat_ID ;
    	$lastposts = get_posts('category='.$var);
    	echo "<h1>".$cat->cat_name. "  (" .count($lastposts)." posts )</h1>";
    	echo "<ul>";
    		foreach($lastposts as $post){
        		setup_postdata($post);
    			echo "<li>";
    			the_title();
    			echo "</li>";
        	}
     	echo "</ul>";
      }
    
    ?>
     </ul>

    Viktor

Viewing 2 replies - 1 through 2 (of 2 total)
  • The WordPress Default Theme shows posts title as links, so look in wp-content/themes/default/index.php for an example of that.

    Thread Starter vinuel

    (@vinuel)

    thanks michael

    my brother came up with this solution and its perfect for me!
    thanks brother!

    <ul>
     <?php
      $categories=  get_categories('child_of=6&order=desc');  /// Parent Category number
      foreach ($categories as $cat) {
     	$var = $cat->cat_ID ;
    	$lastposts = get_posts('category='.$var.'&orderby=date&order=dsc');
    	echo "<h1>".$cat->cat_name. "  (" .count($lastposts)." posts )</h1>";
    	echo "<ul>";
    		foreach($lastposts as $post){
        		setup_postdata($post);
            $whatweneed = $post->ID;
    			echo "<li><a href=http://www.mywordpressblog.de/archives/" . $whatweneed .">";
    			the_title();
    			echo "</a></li>";
        	}
     	echo "</ul>";
      }
    
    ?>
     </ul>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘subcategories posts list’ is closed to new replies.