Due to issues with the Internet.ee domain registry, our main domain, paste.ee, is currently disabled due to abuse reports. We are looking into alternative domains to continue operation, but for now the pastee.dev domain is the primary domain.
If you wish to blame someone, blame the scum using this site as a malware host.
Submitted on September 18, 2015 at 08:33 AM

Section 1 (PHP)

/**
        * GET SUB CATS FROM A POST
        */
        $args = array('child_of' => 7  , 'hide_empty' => 0);
        $categories = get_categories( $args );

        foreach($categories as $category) {
          echo '<div class="col">';

          // Get POSTS from categor to grab the image.
          $args = array('category' => $category->ID);
          $posts = get_posts($args);

          foreach ($posts as $post){
            var_dump($post);
          }

          echo '<h3>

          <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a>
          </h3>';


          echo '</div>';
        }
        ?>