如何查看Wordpress帖子有多少个自定义字段?

时间:2012-05-27 17:09:26

标签: php wordpress custom-fields

如何检查有多少自定义字段有帖子,我不想检索任何值,但我需要找出有多少自定义字段有帖子。

1 个答案:

答案 0 :(得分:0)

<?php
    // get only the keys as you only need the number
    $cfields = get_post_custom_keys($post_id);
    // num_cfields will store the number of custom fields
    $num_cfields = count(cfields);
?>

还有get_post_custom以及get_post_custom_values