Created
May 13, 2016 08:27
-
-
Save daipresents/4f2b5f19e1ed2243cd685b170c537934 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'amp_post_template_metadata', 'xyz_amp_modify_json_metadata', 10, 2 ); | |
| function xyz_amp_modify_json_metadata( $metadata, $post ) { | |
| $metadata['@type'] = 'NewsArticle'; | |
| $metadata['publisher']['logo'] = array( | |
| '@type' => 'ImageObject', | |
| 'url' => 'http://daipresents.com/wp-content/uploads/2016/05/header.201502.jpg', | |
| 'height' => 60, | |
| 'width' => 298, | |
| ); | |
| if(empty($metadata['image'])) { | |
| $metadata['image'] = array( | |
| '@type' => 'ImageObject', | |
| 'url' => 'http://daipresents.com/wp-content/uploads/2015/02/header.201502.jpg', | |
| 'height' => 295, | |
| 'width' => 1105, | |
| ); | |
| } | |
| return $metadata; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment