如何检查有多少自定义字段有WordPress的帖子?

问题描述:

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

<?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

+0

它不为我工作 - 回声$ num_cfields总是返回“1”,不管多的自定义字段如何张贴了,我试过get_post_custom et_post_custom_values,相同的结果。 – Rorkkkk

+0

它对我来说很完美 ID)); ?> – Havelock

+0

新代码确实有效,谢谢。 – Rorkkkk