[Resolved] remove “by” string on Author blog

Home Forums Support [Resolved] remove “by” string on Author blog

Home Forums Support remove “by” string on Author blog

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1629227
    Alfonso

    Hi there,

    I need to remove “by” string on Author posts field from my blog. How i can do it?

    Thanks!

    #1629471
    David
    Staff
    Customer Support

    Hi there,

    add this PHP Snippet:

    add_filter( 'generate_inside_post_meta_item_output', function( $output, $item ) {
    	if ( 'author' === $item ) {
            return '';
        }
        return $output;
    }, 50, 2 );
    #1629600
    Alfonso

    Is working perfect! Thanks!!!!

    #1629780
    David
    Staff
    Customer Support

    You’re welcome

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