After going several google searches i've accomplish this code (Not too good on PHP)
<div>
<?php
$args = array(
'post_type' => 'post'
);
$categories = get_categories( $args );
$catlinks = get_category_link( $categories);
foreach ( $categories as $category ) {
echo '<a href=" '.$catlink->link . '"> <h2>' . $category->name .'</h2></a>';
$args['category'] = $category->term_id;
} ?>
</div>
This code displays a loop of Wordpress Post Categories, im trying to get each category link, but i'm still not getting the right link.
Any help in advance would be great.
Thanks Rodrigo