Site logo

Archived topic

How to modify the metadata?

3 replies · Started by inchenaim on August 14, 2020

Viewing posts 1–4 of 4

Hi,

How to edit meta tags below the post title for the author? I want to edit word 'by'

Hi there,

Try this PHP snippet:

add_filter( 'generate_inside_post_meta_item_output', function( $output, $item ) {
	if ( 'author' === $item ) {
        return ' My Custom Text ';
    }
    return $output;
}, 50, 2 );

Adding PHP: https://docs.generatepress.com/article/adding-php/

Hello Leo,

Yes, it works like a charm!
Thank you :-)

No problem :)

This archived topic is closed to new replies.