• <?php $values = get_post_custom_values("videokhac"); echo $values[0]; ?>

    I want to get all custom value in some category to new page … example: domain.com/abc.php or domain.com/abc

    get and display random value, separated by commas… at the last not comma ??

    Help me please…

Viewing 1 replies (of 1 total)
  • Is this what you’re thinking?

    <?php echo implode (", ", get_post_meta ($post->ID, "videokhac")); ?>

    It’s not randomised, but there’s ways to do that if you want to add in another line or two.

Viewing 1 replies (of 1 total)
  • The topic ‘Get custom post value in category to new page’ is closed to new replies.