[Resolved] How to modify the metadata?

Home Forums Support [Resolved] How to modify the metadata?

Home Forums Support How to modify the metadata?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1403441
    inchenaim

    Hi,

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

    #1403530
    Leo
    Staff
    Customer Support

    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/

    #1403712
    inchenaim

    Hello Leo,

    Yes, it works like a charm!
    Thank you ๐Ÿ™‚

    #1404115
    Leo
    Staff
    Customer Support

    No problem ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.