I use this code in functions.php file:

function get_custom_field_value($szKey, $bPrint = false) {
global $post;
$szValue = get_post_meta($post->ID, $szKey, true);
if ( $bPrint == false ) return $szValue; else echo $szValue;}

and this one in my HTML to reference it when I need to get a custom field:

<?php if ( function_exists('get_custom_field_value') ){
    get_custom_field_value('now_location', true);} ?>

But this works only when I use it inside a post because it takes current post's field value.

How do I get a field value (or several for that matter) from one exact post? I guess it has something to do with post's ID but I don't know what to change/add to the code.

link|improve this question

What are you using? What is $post, cus it's not the same as $_POST – Niels Nov 14 '11 at 14:40
how does $post work? – Damien Pirsy Nov 14 '11 at 14:43
I just copied the code from here. As I said, it works fine when I use it inside a post but it doesn't when I want to get specific field value from specific post and display the value in a separate div. – rlesko Nov 14 '11 at 14:57
Why not give post ID as an argument, at least makes it easier to debug. – janw Nov 14 '11 at 16:49
@DamienPirsy and @Niels $post is a global wordpress variable... – Johannes Pille Nov 14 '11 at 17:06
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

As @janw suggests It is good to pass the post id as an argument in order to get custom fields for a particular post.

function get_custom_field_value($szKey,$postId, $bPrint = false) {
$szValue = get_post_meta($postId, $szKey, true);
if ( $bPrint == false ) return $szValue; else echo $szValue;}
link|improve this answer
Do I add it as a new function, alongside the existing one? If yes, what PHP code should I use when referencing that function in HTML? And do I just add my post ID like this: ... get_custom_field_value($szKey,$23, $bPrint = false)... – rlesko Nov 15 '11 at 9:35
if the post id is 23 and you are going to use the function in my comment, here is the code get_custom_field_value($szKey,23, $bPrint = false); – Vasanthan.R.P Nov 15 '11 at 10:51
Works great with a small modification. I had to write get_custom_field_value($szKey,23, true); when referencing the function. Why is there $bPrint = false? Now I have a problem when referencing this function inside a post, it doesn't show it at all. – rlesko Nov 15 '11 at 11:11
1  
Sorry for the "$bPrint = false". You have to get the post id and pass it to the function. Usually for a single post page you can use $post->ID and if you use some other custom loops you have to use that object instead of post. I hope this will solve your problem. Thanks – Vasanthan.R.P Nov 15 '11 at 11:22
1  
True = Displays the custom field value of the $szKey. False = Just return the custom field value of the $szKey. – Vasanthan.R.P Nov 16 '11 at 7:12
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.