Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Custom Meta on AMP Mode || Remove Meta Author on AMP Mode */
- function custom_meta_in_amp_mode( $meta ) {
- if ( ( $key = array_search( 'meta-author', $meta ) ) !== false ) {
- unset( $meta[ $key ] );
- }
- return $meta;
- }
- add_filter( 'amp_post_article_header_meta', 'custom_meta_in_amp_mode' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement