Limit query Page

  • Unknown's avatar

    i try to query all of my work and random it But i want to show only 4

  • but it show all work on my page

    <?php

    $categoriesCF = get_post_meta($post->ID, "categories", true);
    // example value = "Sprockets|92,Sprunklers|94"

    $allCategories = explode(",", $categoriesCF);
    // $allCategories[0] = "Sprockets|92"
    // $allCategories[1] = "Sprunklers|94"

    foreach ($allCategories as $category) {

    $pieces = explode("|", $category);
    // $pieces[0] = "Sprockets"
    // $pieces[1] = 92

    $link = get_permalink($pieces[1]);
    echo "

  • <?php endwhile; wp_reset_query();

    echo “”;

    };
    ?>
    Thank for help in advance i’m a designer that know a few of programing THANK A LOT