Show the location ( City and State ) on posts list
For everybody who wants to know how to put the city and province to the listings and even add a link to them in order to search only for the listings from that city or province, than here is the code which is working for me right now.
It has to be put in index-directory.php, index-standard.php, search.php and archive-default.php and inside this code:
<p class="bot4px dotted"><?php _e('Category','cp') ?>: <?php the_category(', ') ?> | <?php _e('Listed:','cp') ?> <?php echo cp_ad_posted($post->post_date); ?>
HERE IT MUST BE INSERTED</p>
The script to insert is:
<br /> <?php _e('Location','cp') ?>: <a href="?s=<?php echo get_post_meta($post->ID, 'cp_city', true); ?>" title="Click to view all posts in this city."><?php echo get_post_meta($post->ID, 'cp_city', true); ?></a>,</span><a href="?s=<?php echo get_post_meta($post->ID, 'cp_state', true); ?>" title="Click to view all posts in this province."><?php echo get_post_meta($post->ID, 'cp_state', true); ?></a></strong>
Hope it helps. Regards