| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 9 | public static function getTimberPostById($postId, $moreLinkText = null, $stripTeaser = false)  | 
            ||
| 10 |     { | 
            ||
| 11 | global $post;  | 
            ||
| 12 | $post = get_post($postId);  | 
            ||
| 13 | setup_postdata($post, $moreLinkText, $stripTeaser);  | 
            ||
| 14 | $timberPost = new Post($post);  | 
            ||
| 15 | wp_reset_postdata($post);  | 
            ||
| 16 | return $timberPost;  | 
            ||
| 17 | }  | 
            ||
| 18 | |||
| 36 |