Archived topic
No duplicate taxonomy description
3 replies · Started by Anna on March 4, 2023
Hello!
Look... Now I have taxonomy description on every pagination page category ot tag.
for example:
https://shpargalka.work/ferma/
also someone description duplicate on https://shpargalka.work/ferma/page/2/ on every newxt /paged/2/
I need have description on one first page only https://shpargalka.work/ferma/ here. And hide for all /paged/.....
How to fixed this is?
Thanks
Best Regards
Alena
Hi there,
This PHP snippet should work:
add_action( 'wp', function() {
if ( is_paged() ) {
remove_action( 'generate_after_archive_title', 'generate_do_archive_description' );
}
} );
Learn how to add PHP: https://docs.generatepress.com/article/adding-php/
Thanks you! This is work!
No problem :)