How make a link to meta_key for all meta_value
-
I have a meta_key = ‘company’, where meta_value = name of the company that introduces the user to order form. Then these companies appear on the publication page (index-job.php). How make a link the company’s name, if the name – meta_value written by the user?
I tried:
<a href="<?php $my_meta = get_post_custom_values( 'wtf_comname', $ID ); if ( $my_meta) { foreach ( $my_meta as $val_key => $val_val ) echo $val_val; } ?>">All job company</a>
But to returns 404.php
Tell me, please, what’s wrong.Thanks
- The topic ‘How make a link to meta_key for all meta_value’ is closed to new replies.