L'unica cosa che forse risolverebbe è questa:
- Missing updated: which means that the item (page/post) missing the *“updated”*CSS class.
And for this, you need to find the function that displays the time for your post/page, if it’s there, you will add this class to the time function so it will be something like:
[TABLE="class: highlight tab-size js-file-line-container, width: 699"]
[TD="class: blob-num js-line-number, align: right"][/TD]
[TD="class: blob-code blob-code-inner js-file-line"] <span class="date updated published"><?php the_time(); ?></span>[/TD]
[/TR]
[/TABLE]
Note: this will make the published time and updated time the same. If you want to get the updated time you need to add this function
[TABLE="class: highlight tab-size js-file-line-container, width: 699"]
[TD="class: blob-num js-line-number, align: right"][/TD]
[TD="class: blob-code blob-code-inner js-file-line"]$updated_time = get_the_modified_time('F jS, Y');[/TD]
[/TR]
[/TABLE]
and then add class=”updated” to it
[TABLE="class: highlight tab-size js-file-line-container, width: 699"]
[TD="class: blob-num js-line-number, align: right"][/TD]
[TD="class: blob-code blob-code-inner js-file-line"]<span class="updated"> '.$updated_time.'</span>[/TD]
[/TR]
[/TABLE]
Ma non so dove mettere quest'ultimo codice.