Skip to content

Get Context

Returns the parent context data — shortcode parameters, parent repeater row, or component input props.

Configuration

No configuration required.

Input

None (source node).

Output

Returns the parent context as a row object. This includes:

  • Shortcode parameters: [wp_nexus app="x" component="y" post_id="123"]row.post_id = "123"
  • Parent repeater row: When inside a nested component, returns the parent's current iteration row
  • Component input props: Values passed to a component_ref widget

Example

Use Get Context as the starting node in a nested component's data pipeline to access the parent's row data:

Get Context → Filter (where category_id = row.id) → ...

TIP

Previously named "Parent Data" (parent_context). Old pipelines using parent_context continue to work.