1 | <?php |
||
7 | class TimberHelper |
||
8 | { |
||
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 | |||
19 | public static function getExcerpt( |
||
35 | } |
||
36 |