Browse the Craft Cookbook

Creating Selective Navigation Hierarchy

You want to create a nav but don’t want to start at the top level. Using the following example section structure, show 2 levels deep inside of Software A (everything that is starred):

Software A
    Item 1        **
         Item x   **
         Item y   **
         Item z   **
    Item 2        **
    Item 3        **
Software B
    Item 1
    Item 2
    etc...
Software C

Read the full recipe →

Displaying Entries Based on User Input

You want to display x entries on the homepage. 0...x of these entries may have been specified by the site author, using an Entries field. Those projects must come first, and the remaining n slots must be filled with the most recent entries, no duplicates allowed.

Read the full recipe →