diff --git src/wp-content/themes/twentyseventeen/functions.php src/wp-content/themes/twentyseventeen/functions.php
index faf317f476..d0020ba93b 100644
|
|
|
function twentyseventeen_setup() { |
| 143 | 143 | 'homepage-section' => array( |
| 144 | 144 | 'thumbnail' => '{{image-espresso}}', |
| 145 | 145 | ), |
| | 146 | 'best_book' => array( |
| | 147 | 'post_type' => 'book', |
| | 148 | 'post_title' => 'Amazing', |
| | 149 | ), |
| 146 | 150 | ), |
| 147 | 151 | |
| 148 | 152 | // Create the custom image attachments used as post thumbnails for pages. |
| … |
… |
function twentyseventeen_setup() { |
| 186 | 190 | 'page_about', |
| 187 | 191 | 'page_blog', |
| 188 | 192 | 'page_contact', |
| | 193 | array( |
| | 194 | 'type' => 'post_type', |
| | 195 | 'object' => 'book', |
| | 196 | 'object_id' => '{{best_book}}', |
| | 197 | ) |
| 189 | 198 | ), |
| 190 | 199 | ), |
| 191 | 200 | |