Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save badabingbreda/2b1bb693c3f1cf86ab44a4de78f667e5 to your computer and use it in GitHub Desktop.
Save badabingbreda/2b1bb693c3f1cf86ab44a4de78f667e5 to your computer and use it in GitHub Desktop.
Toolbox Example - extending timber posts data
<?php
add_filter( 'toolbox_timber_posts_data' , 'my_custom_data' ,10 ,1 );
function my_custom_data( $data ) {
$data['mydata'] = array(
'firstname' => 'John',
'lastname' => 'Doe'
);
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment