Вот самый простой способ - добавить в файл functions.php вашей темы.Если вы хотите добиться более профессионального результата, вы можете создать «шорткоды».
add_filter( 'the_content', 'my_the_content_filter', 20 );
function my_the_content_filter( $content ) {
if( is_user_logged_in() ) {
$user = wp_get_current_user();
$username = $user->display_name;
$content = str_replace('[Username]', $username, $content);
}
return $content;
}
Если вы хотите получить более подробную информацию, см. Кодекс здесь.