Business Proposal Writing
Business Video Script Writing
Event Marketing
Photo Portfolio
Strategic Marketing

business-proposal-writing
business-video-script-writing
event-marketing
photo-portfolio
strategic-marketing



<?php
$categories=get_categories('include=10,11,12,13,14&orderby=name&order=ASC');
  foreach($categories as $category) {
      $posts=get_posts('showposts=-1&cat='. $category->term_id);
      if ($posts) {
        echo '<h4 class="portfolio-title">'. $category->name .'</h4>'
?>
<ul>
<?php
		foreach($posts as $post) {
          setup_postdata($post); 
          $titleID= the_ID(); ?>
          <li><a href="http://www.ckwrites.com/portfolio/#<?php the_ID(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title('titleID'); ?></a></li>

          <?php
        } // foreach($posts
      } // if ($posts
    } // foreach($categories
?>
</ul>




<?php
$categories=get_categories('include=10,11,12,13,14');
  foreach($categories as $category) {
      $posts=get_posts('showposts=-1&cat='. $category->term_id);
      if ($posts) {
        echo '<h4 class="portfolio-title">'. $category->name .'</h4>'
?>
<ul>
<?php
		foreach($posts as $post) {
          setup_postdata($post); 
          $title_name=the_ID(); ?>
          <li><a href="http://www.ckwrites.com/portfolio/#<?php the_ID(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title($title_name); ?></a><br /><?php $title_name ?>
          
          <p>Post Number: <?php the_ID(); ?></p>
          </li>

          <?php
        } // foreach($posts
      } // if ($posts
    } // foreach($categories
?>
</ul>
