Archived topic
How can i add the publishing date in the link "next"
3 replies · Started by ana on May 20, 2022
I want to add the entry date here:
https://paste.pics/H0NJN
my website is https://octesoft.com/paracelsos/
thanks !
Hi there,
You can use a PHP snippet like this:
add_filter( 'generate_footer_entry_meta_items', function() {
return array(
'categories',
'post-navigation',
'date',
);
} );
Adding PHP: https://docs.generatepress.com/article/adding-php/
it worked, thanks!!
can i add the date too in the previous entry link:
https://paste.pics/H10S2
thanks!
Hi there,
thats gets more complicated. You may want to check out the Block Element for building your own custom post navigation:
https://docs.generatepress.com/article/block-element-post-navigation/