Viewing 2 replies - 1 through 2 (of 2 total)
  • Pull the value from the post meta, then output it using PHP, or use the field editor addon that has a gui to do all of this.

    To output the fields on the frontend pulling it from the meta:

    $custom_field_value = get_post_meta( get_the_ID(), '_my_meta_key', true);

    Then just echo out the value

    echo $custom_field_value;

    Couple things to make sure of, first the _my_meta_key is going to be the meta key of the field you added. BUT make sure you prepend it with an underscore. So _my_meta_key is actually the meta key my_meta_key

    Voila!

    Thread Starter AlessioAngeloro

    (@alessioangeloro)

    It Works ??

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to render custom fields in front end job listing’ is closed to new replies.