如何检查有多少自定义字段具有帖子,我不想检索任何值,但我需要找出有多少自定义域具有帖子。
如何检查Wordpress帖子中有多少个自定义字段?
原标题:How check how many custom fields has a Wordpress post?
最佳回答
<?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);
?>