<?php $concat= get_option("permalink_structure")?"?":"&"; ?>
<div class="wrap">
<table class="post" id="user_post_list" border="0" width="100%" cellspacing="0">
<thead>
<tr>
<th>
<?php echo __("Title","wpmarketplace");?>
</th>
<th>
<?php echo __("Category","wpmarketplace");?>
</th>
<th>
<?php echo __("Action","wpmarketplace");?>
</th>
</tr>
</thead>
<tbody>
<?php foreach($user_posts as $upost){?>
<tr>
<td>
<a href="<?php the_permalink();?><?php echo $concat;?>task=edit&postid=<?php echo $upost->ID;?>"><?php echo $upost->post_title;?></a>
</td>
<td>
<?php $category=get_the_category( $upost->ID ); echo $category[0]->cat_name;?>
</td>
<td>
<a href="#" onclick="if(confirm('Are you sure?')){location.href='<?php the_permalink();?><?php echo $concat;?>task=delete&postid=<?php echo $upost->ID;?>'}" class="button"><?php echo __("Delete","wpmarketplace");?></a>
</td>
</tr><?php } ?>
</tbody>
</table>
</div>
</div> <!-- ending div for wrapper-->