在模板中,您可以看到the_title()
, 您需要将其更改为以下内容:
echo get_the_title() . \', \' .
\'posted by \' .
get_the_author() . \', \' .
human_time_diff( get_the_time( \'U\' ), current_time( \'timestamp\' ) ) .
\' ago\';
human_time_diff()
就是那个做关于你主题的部分的人。虽然你也要求其他人。
但是,如果您想让它看起来更干净,请尝试:
printf(
\'<h2>%s, posted by %s, %s ago</h2>\',
get_the_title(),
get_the_author(),
human_time_diff(
get_the_time( \'U\' ),
current_time( \'timestamp\' )
)
);
替换第一个参数中所需的任何标记/格式