Remove "by" before author name on top of single post

Posted in: Newspaper
Post count: 91

Hi

How can I remove the word “by” before author name and date on top of single post?

I want it to show the following:
[author name], [date]

Thanks!

Post count: 388

Theme Panel -> Translations -> space or something for “by”

Post count: 341

In the following files: loop-single.php, loop-single-1.php, single_template_2.php, single_template_3.php, single_template_4.php, single_template_5.php

Replace
<?php echo $td_mod_single->get_author();?>
with
<?php echo '<a itemprop="author" href="' . get_author_posts_url($post->post_author) . '">' . get_the_author_meta('display_name', $post->post_author) . '</a>';?>

Hope that helps 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.