Remove Author byline
-
Hi There,
I am trying to remove the author byline on /amp/ pages because I’m receiving schema.org errors.
I tried attaching the following code I retrieved from: https://github.com/Automattic/amp-wp
add_filter( 'amp_post_template_meta_parts', 'xyz_amp_remove_author_meta' ); function xyz_amp_remove_author_meta( $meta_parts ) { foreach ( array_keys( $meta_parts, 'meta-author', true ) as $key ) { unset( $meta_parts[ $key ] ); } return $meta_parts; }
in my functions.php of my child theme.
Any help would be appreciated.
Thanks,
Brian
- The topic ‘Remove Author byline’ is closed to new replies.