- 投稿者が自分しかいないのでbyを取る
- Posted onも見たらわかるからいらん
- 投稿した時間まで表示したい
※時間の設定もactivello_posted_on() の最初に記述してあるのでそこを弄ればよい。
子テーマのfunctions.phpに親のinc/template-tags.php内のfunction activello_posted_on() の定義箇所をコピペ
変更前
printf( '' . __( 'Posted on', 'activello' ) . ' %1$s' . __( 'by', 'activello' ) . ' %2$s',
sprintf( '%2$s',
esc_url( get_permalink() ),
$time_string
),
sprintf( '
変更後
printf( '' . __( '', 'activello' ) .
sprintf( '%2$s',
esc_url( get_permalink() ),
$time_string
)
);
}