I checked http://drupal.org/node/1072640 and elsewhere but didn't find an answer, so I'm turning to the forum.

I would like to change the default behavior of my site from having the author/date line on the front page read "Submitted by (name) on (date & time)" to "By (name), (date & time)" and I'd like to have the author's name boldfaced.

Perhaps I'm overlooking it, but I haven't found anywhere in my theme files to alter that. Is that phrasing in the core?

If so, how would I change that?

Comments

abhishek sawant’s picture

Try below code :

function THEME_NAME_node_submitted($node) {
  // Make your changes.
  return t('By !username, @datetime', 
    array(
    '!username' => theme('username', $node), 
    '@datetime' => format_date($node->created),
  ));
}

P.N : Replace THEME_NAME with your theme name.

Might it helps.

Abhishek Sawant
Drupal Developer

brianestadt’s picture

Thanks for the suggestion. In which file do you recommend I add this?

abhishek sawant’s picture

try above code into your template.php file which is located in your theme folder.

Abhishek Sawant
Drupal Developer