/
push

push

Appends an element to the end of an array.

Input:

{{ "John, Paul, George" | split: ", " | push: "Ringo" | join: ", " }}

Output:

"John, Paul, George, Ringo"

This filter also works on arrays with objects, generated by Plate:

{{ site.pages | push: page }}

 

Related content

unshift
unshift
More like this
pop
More like this
Filters
Filters
More like this
shift
More like this
to_json
to_json
More like this
from_json
from_json
More like this