/ Published in: PHP
Expand |
Embed | Plain Text
/** * Custom Field **/ // From the current post (as string) $value = get_post_custom_values("customfield"); // From the current post (as array) // From another post $value = get_post_meta($id, "customfield", 1); // From another post (as array) $values = get_post_meta($id, "customfield", 0);
You need to login to post a comment.
