Skip to content

Instantly share code, notes, and snippets.

@davidmaneuver
Created November 11, 2018 09:31
Show Gist options
  • Save davidmaneuver/82b768595262a95afedc1060c39d504c to your computer and use it in GitHub Desktop.
Save davidmaneuver/82b768595262a95afedc1060c39d504c to your computer and use it in GitHub Desktop.
<?php
namespace Example/Model;
class MyPost extends \Timber\Post {
public function full_name() {
// first_name and last_name could be ACF fields.
return "{$this->first_name} {$this->last_name}";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment