Remove Author byline
-
Hi There,
I’m trying to get rid of the author byline on my amp pages but can’t quite seem to do so.
FYI: I have amp & pagefrog installed.
I tried removing the author from meta by inserting the following in my functions.php of my child theme:
'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; }
as it was instructed from https://github.com/Automattic/amp-wp.
Any ideas?
Thanks!
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Remove Author byline’ is closed to new replies.