Changing Post Meta on homepage
Hi,
I would like to change the post ad meta which shows on the main homepage.
There are 2 parts to the right of the ad image: [Category] | [Seller]
I've found this php code in the functions.php which I think relate to it:
<p class="post-meta">
<span class="folder"> </span><?php if ( $post->post_type == 'post' ) the_category(', '); else echo get_the_term_list( $post->ID, APP_TAX_CAT, '', ' - ', '' ); ?>| <span class="owner"><?php if ( $cp_options->ad_gravatar_thumb ) appthemes_get_profile_pic( get_the_author_meta('ID'), get_the_author_meta('user_email'), 16 ); ?><?php the_author_posts_link(); ?></span>
</p>
How can I change the seller to the county chosen for the listing. e.g. it would turn to [Category] | [County]
Any help would be appreciated.
Thanks