1

投稿があるカスタムフィールドの数を確認する方法。値を取得したくないのですが、投稿があるカスタムフィールドの数を確認する必要があります。

4

1 に答える 1

1
<?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_customget_post_custom_valuesもあります

于 2012-05-27T17:21:07.567 に答える