是否可以在functions.php中使用post的自定义元值

时间:2014-01-14 15:14:21

标签: wordpress function

我有一个wordpress网站,我需要在functions.php中的一个函数中使用一些自定义post的元值。这甚至可能吗? &安培;如果有的话,有人可以指出我正确的方向,我会非常感激。

1 个答案:

答案 0 :(得分:0)

您可以使用WordPress功能get_post_meta()

http://codex.wordpress.org/Function_Reference/get_post_meta

您可以这样使用它:

$array_of_your_custom_fields = get_post_meta( $post_id, $meta_key );

或者

$value = get_post_meta( $post_id, $meta_key, true );
// value is a single result of type string