Skip to content

How to Remove Author in Tumblr Shares

Include the following code in either your child theme's functions.php file or using a plugin like Woody Code Snippets.

function rop_remove_tumblr_author(){
return '';
}
add_filter( 'rop_tumblr_post_author', 'rop_remove_tumblr_author' );
Was this helpful?