Сделал вывод последнего обновления статьи с помощью этой инструкции:
https://wpschool.ru/last-post-updated-date/
function wpschool_last_updated_date( $content ) {
$custom_content = '';
$u_time = get_the_time('U');
$u_modified_time = get_the_modified_time('U');
if ($u_modified_time >= $u_time + 86400) {
$updated_date = get_the_modified_time('j F Y');
$updated_time = get_the_modified_time('H:i');
$custom_content .= '<p class="last-updated">Последнее обновление - '. $updated_date . ' в '. $updated_time .'</p>';
}
$custom_content .= $content;
return $custom_content;
}
add_filter( 'the_content', 'wpschool_last_updated_date' );
.last-updated {
text-align: right;
font-weight: 600;
}
Но надпись выводится сверху статьи, как сделать чтобы вывод надписи был в конце статьи?