• Hi, im using code, which loops me all post custom values:

    <?php
    $mykey_values = get_post_custom_values('wpcf-in-recipe');
    foreach ( $mykey_values as $key => $value ) {
    echo "<li><span>$value</span></li>";
    }
    ?>

    I need that code to loop max 5 custom values items

    Maybe anybody know the solution?

    [ http://codex.ww.wp.xz.cn/Forum_Welcome#No_Bumping ]

Viewing 1 replies (of 1 total)
  • I think this will do what you want:

    <?php
    $mykey_values = get_post_custom_values('wpcf-in-recipe');
    foreach ( $mykey_values as $key => $value ) {
       echo "<li><span>$value</span></li>";
       if ( ++$my_counter > 4 ) break;
    }
    ?>
Viewing 1 replies (of 1 total)

The topic ‘How to loop max 5 post custom values?’ is closed to new replies.